mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-28 17:21:34 +00:00
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -715,9 +715,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap"
|
name = "clap"
|
||||||
version = "4.1.4"
|
version = "4.1.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
|
checksum = "ec0b0588d44d4d63a87dbd75c136c166bbfd9a86a31cb89e09906521c7d3f5e3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"clap_derive",
|
"clap_derive",
|
||||||
@ -2091,7 +2091,7 @@ name = "keygen"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.20.0",
|
"base64 0.20.0",
|
||||||
"clap 4.1.4",
|
"clap 4.1.6",
|
||||||
"libp2p-core",
|
"libp2p-core",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
@ -2152,7 +2152,7 @@ dependencies = [
|
|||||||
"async-std",
|
"async-std",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"bytes",
|
"bytes",
|
||||||
"clap 4.1.4",
|
"clap 4.1.6",
|
||||||
"either",
|
"either",
|
||||||
"env_logger 0.10.0",
|
"env_logger 0.10.0",
|
||||||
"futures",
|
"futures",
|
||||||
@ -2200,7 +2200,7 @@ version = "0.10.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"async-std",
|
"async-std",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"clap 4.1.4",
|
"clap 4.1.6",
|
||||||
"env_logger 0.10.0",
|
"env_logger 0.10.0",
|
||||||
"futures",
|
"futures",
|
||||||
"futures-timer",
|
"futures-timer",
|
||||||
@ -2268,7 +2268,7 @@ version = "0.9.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"asynchronous-codec",
|
"asynchronous-codec",
|
||||||
"bytes",
|
"bytes",
|
||||||
"clap 4.1.4",
|
"clap 4.1.6",
|
||||||
"either",
|
"either",
|
||||||
"env_logger 0.10.0",
|
"env_logger 0.10.0",
|
||||||
"futures",
|
"futures",
|
||||||
@ -2626,7 +2626,7 @@ version = "0.15.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"asynchronous-codec",
|
"asynchronous-codec",
|
||||||
"bytes",
|
"bytes",
|
||||||
"clap 4.1.4",
|
"clap 4.1.6",
|
||||||
"either",
|
"either",
|
||||||
"env_logger 0.10.0",
|
"env_logger 0.10.0",
|
||||||
"futures",
|
"futures",
|
||||||
|
@ -134,7 +134,7 @@ async-std = { version = "1.6.2", features = ["attributes"] }
|
|||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
either = "1.8.0"
|
either = "1.8.0"
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
clap = { version = "4.0.13", features = ["derive"] }
|
clap = { version = "4.1.6", features = ["derive"] }
|
||||||
tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
|
tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
|
||||||
|
|
||||||
libp2p-mplex = { path = "muxers/mplex" }
|
libp2p-mplex = { path = "muxers/mplex" }
|
||||||
|
@ -10,7 +10,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.0.13", features = ["derive"] }
|
clap = { version = "4.1.6", features = ["derive"] }
|
||||||
zeroize = "1"
|
zeroize = "1"
|
||||||
serde = { version = "1.0.136", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
serde_json = "1.0.93"
|
serde_json = "1.0.93"
|
||||||
|
@ -27,7 +27,7 @@ prost = "0.11"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-std = { version = "1.10", features = ["attributes"] }
|
async-std = { version = "1.10", features = ["attributes"] }
|
||||||
clap = { version = "4.0.13", features = ["derive"] }
|
clap = { version = "4.1.6", features = ["derive"] }
|
||||||
env_logger = "0.10"
|
env_logger = "0.10"
|
||||||
libp2p-identify = { path = "../identify" }
|
libp2p-identify = { path = "../identify" }
|
||||||
libp2p-noise = { path = "../../transports/noise" }
|
libp2p-noise = { path = "../../transports/noise" }
|
||||||
|
@ -29,7 +29,7 @@ void = "1"
|
|||||||
prost-build = "0.11"
|
prost-build = "0.11"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
clap = { version = "4.0.13", features = ["derive"] }
|
clap = { version = "4.1.6", features = ["derive"] }
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
libp2p-dns = { path = "../../transports/dns", features = ["async-std"] }
|
libp2p-dns = { path = "../../transports/dns", features = ["async-std"] }
|
||||||
libp2p-identify = { path = "../../protocols/identify" }
|
libp2p-identify = { path = "../../protocols/identify" }
|
||||||
|
@ -33,7 +33,7 @@ void = "1"
|
|||||||
prost-build = "0.11"
|
prost-build = "0.11"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
clap = { version = "4.0.13", features = ["derive"] }
|
clap = { version = "4.1.6", features = ["derive"] }
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
libp2p-identify = { path = "../../protocols/identify" }
|
libp2p-identify = { path = "../../protocols/identify" }
|
||||||
libp2p-noise = { path = "../../transports/noise" }
|
libp2p-noise = { path = "../../transports/noise" }
|
||||||
|
Reference in New Issue
Block a user