diff --git a/Cargo.toml b/Cargo.toml index a61d1ca4ba..0f924cfcf9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -337,6 +337,7 @@ dashmap = "5.5" derive_more = "0.99.17" fdlimit = "0.3.0" eyre = "0.6" +generic-array = "0.14" tracing = "0.1.0" tracing-appender = "0.2" thiserror = "1.0" diff --git a/crates/net/discv4/Cargo.toml b/crates/net/discv4/Cargo.toml index 49e9b4ecc2..13ef81f440 100644 --- a/crates/net/discv4/Cargo.toml +++ b/crates/net/discv4/Cargo.toml @@ -37,7 +37,7 @@ tracing.workspace = true thiserror.workspace = true parking_lot.workspace = true rand = { workspace = true, optional = true } -generic-array = "0.14" +generic-array.workspace = true serde = { workspace = true, optional = true } [dev-dependencies] diff --git a/crates/net/ecies/Cargo.toml b/crates/net/ecies/Cargo.toml index d4a4de32ac..6dbf1d4c52 100644 --- a/crates/net/ecies/Cargo.toml +++ b/crates/net/ecies/Cargo.toml @@ -27,7 +27,7 @@ educe = "0.4.19" tracing.workspace = true # HeaderBytes -generic-array = "0.14.6" +generic-array.workspace = true typenum = "1.15.0" byteorder = "1.4.3"