-
Notifications
You must be signed in to change notification settings - Fork 998
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Introduce `rsa` feature flag to `libp2p-core`. - Expose `rsa` feature in `libp2p`. - Add `rsa` feature to `libp2p` `default`.
- Loading branch information
Showing
54 changed files
with
145 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-core" | |
edition = "2021" | ||
rust-version = "1.56.1" | ||
description = "Core traits and structs of libp2p" | ||
version = "0.35.1" | ||
version = "0.36.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -40,7 +40,7 @@ zeroize = "1" | |
_serde = { package = "serde", version = "1", optional = true, features = ["derive"] } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false } | ||
ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false, optional = true} | ||
|
||
[dev-dependencies] | ||
async-std = { version = "1.6.2", features = ["attributes"] } | ||
|
@@ -62,6 +62,7 @@ prost-build = "0.11" | |
default = [ "secp256k1", "ecdsa" ] | ||
secp256k1 = [ "libsecp256k1" ] | ||
ecdsa = [ "p256" ] | ||
rsa = [ "dep:ring" ] | ||
serde = ["multihash/serde-codec", "_serde"] | ||
|
||
[[bench]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.36.0 [unreleased] | ||
|
||
- Update to `libp2p-core` `v0.36.0` | ||
|
||
# 0.35.0 | ||
|
||
- Update to `libp2p-core` `v0.35.0` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-mplex" | |
edition = "2021" | ||
rust-version = "1.56.1" | ||
description = "Mplex multiplexing protocol for libp2p" | ||
version = "0.35.0" | ||
version = "0.36.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -14,7 +14,7 @@ categories = ["network-programming", "asynchronous"] | |
bytes = "1" | ||
futures = "0.3.1" | ||
asynchronous-codec = "0.6" | ||
libp2p-core = { version = "0.35.0", path = "../../core", default-features = false } | ||
libp2p-core = { version = "0.36.0", path = "../../core", default-features = false } | ||
log = "0.4" | ||
nohash-hasher = "0.2" | ||
parking_lot = "0.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 0.40.0 [unreleased] | ||
|
||
- Update to `libp2p-core` `v0.36.0` | ||
|
||
# 0.39.0 | ||
|
||
- Update to `libp2p-core` `v0.35.0` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-yamux" | |
edition = "2021" | ||
rust-version = "1.56.1" | ||
description = "Yamux multiplexing protocol for libp2p" | ||
version = "0.39.0" | ||
version = "0.40.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
@@ -12,7 +12,7 @@ categories = ["network-programming", "asynchronous"] | |
|
||
[dependencies] | ||
futures = "0.3.1" | ||
libp2p-core = { version = "0.35.0", path = "../../core", default-features = false } | ||
libp2p-core = { version = "0.36.0", path = "../../core", default-features = false } | ||
parking_lot = "0.12" | ||
thiserror = "1.0" | ||
yamux = "0.10.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.