Skip to content

Commit

Permalink
chore: lock tentacle
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
doitian committed Oct 28, 2024
1 parent 69d4df8 commit 5f3a467
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []

Expand All @@ -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]]
Expand Down

0 comments on commit 5f3a467

Please sign in to comment.