chore: Update crate dependencies

This commit is contained in:
parazyd
2025-02-25 12:15:28 +01:00
parent ee96346e4c
commit f5baac83cf
32 changed files with 74 additions and 85 deletions

View File

@@ -29,10 +29,10 @@ darkfi-serial = {version = "0.4.2", features = ["async"]}
sled-overlay = "0.1.6"
# Crypto
blake3 = "1.5.5"
blake3 = "1.6.0"
# Misc
log = "0.4.25"
log = "0.4.26"
url = "2.5.4"
# Daemon
@@ -46,7 +46,7 @@ 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.217", features = ["derive"], optional = true}
serde = {version = "1.0.218", features = ["derive"], optional = true}
structopt = {version = "0.3.26", optional = true}
structopt-toml = {version = "0.5.1", optional = true}

View File

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

View File

@@ -15,7 +15,7 @@ darkfi = {path = "../../../../", features = ["async-daemonize", "rpc"]}
darkfi-serial = "0.4.2"
# Misc
log = "0.4.25"
log = "0.4.26"
# JSON-RPC
async-trait = "0.1.86"
@@ -31,6 +31,6 @@ simplelog = "0.12.2"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.217", features = ["derive"]}
serde = {version = "1.0.218", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -14,18 +14,18 @@ async-channel = "2.3.1"
async-executor = "1.13.1"
async-std = "1.13.0"
async-trait = "0.1.86"
blake3 = "1.5.5"
blake3 = "1.6.0"
ctrlc = { version = "3.4.5", features = ["termination"] }
easy-parallel = "3.3.1"
futures-lite = "2.6.0"
log = "0.4.25"
serde_json = "1.0.138"
log = "0.4.26"
serde_json = "1.0.139"
simplelog = "0.12.2"
url = "2.5.4"
# Argument parsing
serde = "1.0.217"
serde_derive = "1.0.217"
serde = "1.0.218"
serde_derive = "1.0.218"
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.25"
log = "0.4.26"
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.217", features = ["derive"]}
serde = {version = "1.0.218", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -10,7 +10,7 @@ edition = "2021"
[workspace]
[dependencies]
anyhow = "1.0.95"
anyhow = "1.0.96"
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.5.5"
blake3 = "1.6.0"
[patch.crates-io]
halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}

View File

@@ -17,7 +17,7 @@ darkfi-serial = "0.4.2"
# Misc
bs58 = "0.5.1"
log = "0.4.25"
log = "0.4.26"
sled-overlay = "0.1.6"
# JSON-RPC
@@ -34,6 +34,6 @@ simplelog = "0.12.2"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.217", features = ["derive"]}
serde = {version = "1.0.218", 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.5.5"
blake3 = "1.6.0"
num-bigint = "0.4.6"
rand = "0.8.5"