diff --git a/Cargo.lock b/Cargo.lock index c5db05f2e7..a32f79a8dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -377,12 +377,6 @@ dependencies = [ "rand 0.8.5", ] -[[package]] -name = "bs58" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" - [[package]] name = "bs58" version = "0.5.1" @@ -1224,7 +1218,7 @@ version = "0.117.0-pre" dependencies = [ "bitflags 1.3.2", "bloom-filters", - "bs58 0.4.0", + "bs58", "ckb-app-config", "ckb-hash", "ckb-logger", @@ -5381,7 +5375,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9e71b28bf0bbf274b92f47cb2c5b42755d84a11e2246cf7bcb7b65c89483b9" dependencies = [ - "bs58 0.5.1", + "bs58", "bytes", "serde", "sha2", @@ -5394,7 +5388,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cac8b23a7879426a4961acea6ae66287f7fe9a934d131a722cbb88f145e97fea" dependencies = [ - "bs58 0.5.1", + "bs58", "bytes", "chacha20poly1305", "futures", diff --git a/network/Cargo.toml b/network/Cargo.toml index e840fe4170..4592198acf 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -22,7 +22,7 @@ tokio-util = { version = "0.7", features = ["codec"] } futures = "0.3" ckb-systemtime = { path = "../util/systemtime", version = "= 0.117.0-pre" } lazy_static = { version = "1.3.0", optional = true } -bs58 = { version = "0.4.0", optional = true } +bs58 = { version = "0.5.1", optional = true } sentry = { version = "0.26.0", optional = true } faster-hex = { version = "0.6", optional = true } ckb-hash = { path = "../util/hash", version = "= 0.117.0-pre" } @@ -38,19 +38,19 @@ socket2 = "0.5" bitflags = "1.0" p2p = { version = "0.6.1", package = "tentacle", features = [ - "upnp", - "parking_lot", - "openssl-vendored", + "upnp", + "parking_lot", + "openssl-vendored", ] } [features] with_sentry = ["sentry"] with_dns_seeding = [ - "lazy_static", - "bs58", - "faster-hex", - "trust-dns-resolver", - "secp256k1", + "lazy_static", + "bs58", + "faster-hex", + "trust-dns-resolver", + "secp256k1", ] fuzz = [] @@ -61,7 +61,7 @@ proptest = "1.0" num_cpus = "1.10" once_cell = "1.8.0" ckb-systemtime = { path = "../util/systemtime", version = "= 0.117.0-pre", features = [ - "enable_faketime", + "enable_faketime", ] } [[bench]]