diff --git a/Cargo.lock b/Cargo.lock index 7ac1fae615..f7cec4aee2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3696,7 +3696,6 @@ dependencies = [ name = "nimiq-bls" version = "0.23.0" dependencies = [ - "ark-crypto-primitives", "ark-ec", "ark-ff", "ark-mnt4-753", @@ -4266,7 +4265,6 @@ dependencies = [ "nimiq-hash", "nimiq-macros", "nimiq-network-interface", - "nimiq-primitives", "nimiq-serde", "nimiq-test-log", "nimiq-test-utils", @@ -4610,7 +4608,6 @@ dependencies = [ "ark-serialize", "async-trait", "clap", - "convert_case 0.6.0", "futures-util", "hex", "nimiq-account", @@ -4761,7 +4758,6 @@ name = "nimiq-utils" version = "0.23.0" dependencies = [ "clear_on_drop", - "futures-util", "hex", "libp2p-identity", "nimiq-collections", @@ -4772,7 +4768,6 @@ dependencies = [ "nimiq-serde", "nimiq-test-log", "nimiq-test-utils", - "parking_lot", "rand", "rand_core", "serde", diff --git a/bls/Cargo.toml b/bls/Cargo.toml index 720e5fb27d..961b3b06ea 100644 --- a/bls/Cargo.toml +++ b/bls/Cargo.toml @@ -27,7 +27,6 @@ ark-ff = "0.4" ark-ec = "0.4" ark-mnt4-753 = "0.4" ark-mnt6-753 = "0.4" -ark-crypto-primitives = { version = "0.4", features = ["prf"] } ark-serialize = "0.4" nimiq-hash = { workspace = true } diff --git a/network-libp2p/Cargo.toml b/network-libp2p/Cargo.toml index e6ee3f3b25..564e60dd98 100644 --- a/network-libp2p/Cargo.toml +++ b/network-libp2p/Cargo.toml @@ -45,7 +45,6 @@ void = "1.0" nimiq-bls = { workspace = true } nimiq-macros = { workspace = true } nimiq-network-interface = { workspace = true } -nimiq-primitives = { workspace = true, features = ["policy"] } nimiq-hash = { workspace = true } nimiq-serde = { workspace = true } nimiq-time = { workspace = true } diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index a1ab44c841..84127f11b1 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -32,7 +32,6 @@ ark-mnt6-753 = "0.4" ark-serialize = "0.4" async-trait = "0.1" clap = { version = "4.5", features = ["derive"] } -convert_case = "0.6" futures = { workspace = true } hex = "0.4" log = { workspace = true } diff --git a/utils/Cargo.toml b/utils/Cargo.toml index c043ebd89f..3a30bad1cc 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -21,11 +21,9 @@ workspace = true [dependencies] clear_on_drop = { version = "0.2", optional = true } -futures = { workspace = true } hex = { version = "0.4", optional = true } libp2p-identity = { version = "0.2", optional = true } log = { workspace = true, optional = true } -parking_lot = "0.12" rand = { version = "0.8", optional = true } rand_core = { version = "0.6", optional = true } serde = "1.0"