chore: Update crate dependencies

This commit is contained in:
parazyd
2025-05-03 10:25:39 +02:00
parent 3137187860
commit 81f37b7b2a
29 changed files with 374 additions and 359 deletions

View File

@@ -29,7 +29,7 @@ darkfi-serial = {version = "0.4.2", features = ["async"]}
sled-overlay = "0.1.7"
# Crypto
blake3 = "1.8.1"
blake3 = "1.8.2"
# Misc
log = "0.4.27"
@@ -43,7 +43,7 @@ async-trait = {version = "0.1.88", optional = true}
futures = {version = "0.3.31", optional = true}
semver = {version = "1.0.26", optional = true}
easy-parallel = {version = "3.3.1", optional = true}
signal-hook-async-std = {version = "0.2.2", optional = true}
signal-hook-async-std = {version = "0.3.0", optional = true}
signal-hook = {version = "0.3.17", optional = true}
simplelog = {version = "0.12.2", optional = true}
serde = {version = "1.0.219", features = ["derive"], optional = true}

View File

@@ -24,7 +24,7 @@ url = "2.5.4"
# Daemon
easy-parallel = "3.3.1"
signal-hook-async-std = "0.2.2"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.17"
simplelog = "0.12.2"
smol = "2.0.2"

View File

@@ -25,7 +25,7 @@ url = "2.5.4"
# Daemon
async-std = {version = "1.13.1", features = ["attributes"]}
easy-parallel = "3.3.1"
signal-hook-async-std = "0.2.2"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.17"
simplelog = "0.12.2"
smol = "2.0.2"

View File

@@ -11,10 +11,10 @@ features = ["dht"]
[dependencies]
async-channel = "2.3.1"
async-executor = "1.13.1"
async-executor = "1.13.2"
async-std = "1.13.1"
async-trait = "0.1.88"
blake3 = "1.8.1"
blake3 = "1.8.2"
ctrlc = { version = "3.4.6", features = ["termination"] }
easy-parallel = "3.3.1"
futures-lite = "2.6.0"

View File

@@ -17,7 +17,7 @@ rand = "0.8.5"
# Daemon
easy-parallel = "3.3.1"
log = "0.4.27"
signal-hook-async-std = "0.2.2"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.17"
simplelog = "0.12.2"
smol = "2.0.2"

View File

@@ -14,5 +14,5 @@ digest = "0.10.7"
ed25519-dalek = "2.1.1"
kyber-kem = "0.1.3"
rand = "0.8.5"
sha2 = "0.10.8"
sha2 = "0.10.9"
x25519-dalek = {version = "2.0.1", features = ["static_secrets"]}

View File

@@ -12,7 +12,7 @@ darkfi-sdk = {path = "../../../../src/sdk"}
darkfi = {path = "../../../../", features = ["zk"]}
lazy_static = "1.5.0"
rand = "0.8.5"
blake3 = "1.8.1"
blake3 = "1.8.2"
[patch.crates-io]
halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}

View File

@@ -28,7 +28,7 @@ url = "2.5.4"
# Daemon
async-std = {version = "1.13.1", features = ["attributes"]}
easy-parallel = "3.3.1"
signal-hook-async-std = "0.2.2"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.17"
simplelog = "0.12.2"
smol = "2.0.2"

View File

@@ -11,6 +11,6 @@ edition = "2021"
darkfi = {path = "../../../", features = ["util"]}
darkfi-serial = {path = "../../../src/serial"}
blake3 = "1.8.1"
blake3 = "1.8.2"
num-bigint = "0.4.6"
rand = "0.8.5"