chore: Update crate dependencies

This commit is contained in:
parazyd
2025-04-15 10:49:43 +02:00
parent 550b857227
commit c040d9c00f
41 changed files with 1164 additions and 969 deletions

View File

@@ -29,24 +29,24 @@ darkfi-serial = {version = "0.4.2", features = ["async"]}
sled-overlay = "0.1.6"
# Crypto
blake3 = "1.6.0"
blake3 = "1.8.1"
# Misc
log = "0.4.26"
log = "0.4.27"
url = "2.5.4"
# Daemon
smol = "2.0.2"
# evgrd deps
async-trait = {version = "0.1.86", optional = true}
async-trait = {version = "0.1.88", optional = true}
futures = {version = "0.3.31", optional = true}
semver = {version = "1.0.25", 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 = {version = "0.3.17", optional = true}
simplelog = {version = "0.12.2", optional = true}
serde = {version = "1.0.218", features = ["derive"], optional = true}
serde = {version = "1.0.219", features = ["derive"], optional = true}
structopt = {version = "0.3.26", optional = true}
structopt-toml = {version = "0.5.1", optional = true}

View File

@@ -15,10 +15,10 @@ darkfi = {path = "../../../", features = ["async-daemonize", "validator", "rpc"]
darkfi-serial = "0.4.2"
# Misc
log = "0.4.26"
log = "0.4.27"
# JSON-RPC
async-trait = "0.1.86"
async-trait = "0.1.88"
tinyjson = "2.5.1"
url = "2.5.4"
@@ -30,7 +30,7 @@ simplelog = "0.12.2"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.218", features = ["derive"]}
serde = {version = "1.0.219", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -16,7 +16,7 @@ darkfi-serial = "0.4.2"
# Misc
clap = {version = "4.4.11", features = ["derive"]}
log = "0.4.26"
log = "0.4.27"
simplelog = "0.12.2"
smol = "2.0.2"
url = "2.5.4"

View File

@@ -15,15 +15,15 @@ darkfi = {path = "../../../../", features = ["async-daemonize", "rpc"]}
darkfi-serial = "0.4.2"
# Misc
log = "0.4.26"
log = "0.4.27"
# JSON-RPC
async-trait = "0.1.86"
async-trait = "0.1.88"
tinyjson = "2.5.1"
url = "2.5.4"
# Daemon
async-std = {version = "1.13.0", features = ["attributes"]}
async-std = {version = "1.13.1", features = ["attributes"]}
easy-parallel = "3.3.1"
signal-hook-async-std = "0.2.2"
signal-hook = "0.3.17"
@@ -31,6 +31,6 @@ simplelog = "0.12.2"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.218", features = ["derive"]}
serde = {version = "1.0.219", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -12,20 +12,20 @@ features = ["dht"]
[dependencies]
async-channel = "2.3.1"
async-executor = "1.13.1"
async-std = "1.13.0"
async-trait = "0.1.86"
blake3 = "1.6.0"
ctrlc = { version = "3.4.5", features = ["termination"] }
async-std = "1.13.1"
async-trait = "0.1.88"
blake3 = "1.8.1"
ctrlc = { version = "3.4.6", features = ["termination"] }
easy-parallel = "3.3.1"
futures-lite = "2.6.0"
log = "0.4.26"
serde_json = "1.0.139"
log = "0.4.27"
serde_json = "1.0.140"
simplelog = "0.12.2"
url = "2.5.4"
# Argument parsing
serde = "1.0.218"
serde_derive = "1.0.218"
serde = "1.0.219"
serde_derive = "1.0.219"
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -16,13 +16,13 @@ rand = "0.8.5"
# Daemon
easy-parallel = "3.3.1"
log = "0.4.26"
log = "0.4.27"
signal-hook-async-std = "0.2.2"
signal-hook = "0.3.17"
simplelog = "0.12.2"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.218", features = ["derive"]}
serde = {version = "1.0.219", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -10,7 +10,7 @@ edition = "2021"
[workspace]
[dependencies]
anyhow = "1.0.96"
anyhow = "1.0.98"
darkfi = {path = "../../../", features = ["blockchain"]}
darkfi-sdk = {path = "../../../src/sdk"}

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.6.0"
blake3 = "1.8.1"
[patch.crates-io]
halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}

View File

@@ -17,16 +17,16 @@ darkfi-serial = "0.4.2"
# Misc
bs58 = "0.5.1"
log = "0.4.26"
log = "0.4.27"
sled-overlay = "0.1.6"
# JSON-RPC
async-trait = "0.1.86"
async-trait = "0.1.88"
tinyjson = "2.5.1"
url = "2.5.4"
# Daemon
async-std = {version = "1.13.0", features = ["attributes"]}
async-std = {version = "1.13.1", features = ["attributes"]}
easy-parallel = "3.3.1"
signal-hook-async-std = "0.2.2"
signal-hook = "0.3.17"
@@ -34,6 +34,6 @@ simplelog = "0.12.2"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.218", features = ["derive"]}
serde = {version = "1.0.219", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

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