From 5f3a467b28ce4081b3322fa598471d7626764dda Mon Sep 17 00:00:00 2001 From: ian Date: Mon, 28 Oct 2024 11:04:17 +0800 Subject: [PATCH] chore: lock tentacle Tentacle 0.6.2 introduces changes that require Rust 1.80.0 where ckb 0.119.0 minimum supported rust version is 1.75.0. So lock the tentacle to 0.6.1 in the `Cargo.toml` file for future possible patch releases. --- network/Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/network/Cargo.toml b/network/Cargo.toml index d9f7b984de..5aa80a0212 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -37,20 +37,20 @@ ckb-spawn = { path = "../util/spawn", version = "= 0.119.0" } socket2 = "0.5" bitflags = "1.0" -p2p = { version = "0.6.1", package = "tentacle", features = [ - "upnp", - "parking_lot", - "openssl-vendored", +p2p = { version = "= 0.6.1", package = "tentacle", features = [ + "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.119.0", features = [ - "enable_faketime", + "enable_faketime", ] } [[bench]]