chore: Update crate dependencies

This commit is contained in:
x
2025-11-13 14:08:35 +00:00
committed by skoupidi
parent 95a8319007
commit aa537b9e4b
32 changed files with 1175 additions and 1043 deletions

View File

@@ -39,15 +39,15 @@ url = "2.5.4"
smol = "2.0.2"
# evgrd deps
async-trait = {version = "0.1.88", optional = true}
async-trait = {version = "0.1.89", optional = true}
futures = {version = "0.3.31", optional = true}
semver = {version = "1.0.26", optional = true}
semver = {version = "1.0.27", optional = true}
easy-parallel = {version = "3.3.1", optional = true}
signal-hook-async-std = {version = "0.3.0", optional = true}
signal-hook = {version = "0.3.18", optional = true}
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"], optional = true }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"], optional = true }
tracing-appender = { version = "0.2.3", optional = true }
serde = {version = "1.0.219", features = ["derive"], optional = true}
serde = {version = "1.0.228", features = ["derive"], optional = true}
structopt = {version = "0.3.26", optional = true}
structopt-toml = {version = "0.5.1", optional = true}

View File

@@ -18,7 +18,7 @@ darkfi-serial = "0.5.0"
tracing = "0.1.41"
# JSON-RPC
async-trait = "0.1.88"
async-trait = "0.1.89"
tinyjson = "2.5.1"
url = "2.5.4"
@@ -26,12 +26,12 @@ url = "2.5.4"
easy-parallel = "3.3.1"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.18"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
tracing-appender = "0.2.3"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.219", features = ["derive"]}
serde = {version = "1.0.228", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -17,6 +17,6 @@ darkfi-serial = "0.5.0"
# Misc
clap = {version = "4.4.11", features = ["derive"]}
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
smol = "2.0.2"
url = "2.5.4"

View File

@@ -18,20 +18,20 @@ darkfi-serial = "0.5.0"
tracing = "0.1.41"
# JSON-RPC
async-trait = "0.1.88"
async-trait = "0.1.89"
tinyjson = "2.5.1"
url = "2.5.4"
# Daemon
async-std = {version = "1.13.1", features = ["attributes"]}
async-std = {version = "1.13.2", features = ["attributes"]}
easy-parallel = "3.3.1"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.18"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
tracing-appender = "0.2.3"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.219", features = ["derive"]}
serde = {version = "1.0.228", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -17,13 +17,13 @@ rand = "0.8.5"
# Daemon
easy-parallel = "3.3.1"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
tracing-appender = "0.2.3"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.18"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.219", features = ["derive"]}
serde = {version = "1.0.228", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -9,11 +9,11 @@ edition = "2021"
[dependencies]
pasta_curves = "0.5.1"
anyhow = "1.0.98"
anyhow = "1.0.100"
rand = "0.8.5"
pbkdf2 = "0.12.2"
hmac = "0.12.1"
sha2 = "0.10.9"
num-bigint = {version = "0.4.6", features = ["rand"]}
num-traits = "0.2.19"
unicode-normalization = "0.1.24"
unicode-normalization = "0.1.25"

View File

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

View File

@@ -21,20 +21,20 @@ sled-overlay = "0.1.10"
tracing = "0.1.41"
# JSON-RPC
async-trait = "0.1.88"
async-trait = "0.1.89"
tinyjson = "2.5.1"
url = "2.5.4"
# Daemon
async-std = {version = "1.13.1", features = ["attributes"]}
async-std = {version = "1.13.2", features = ["attributes"]}
easy-parallel = "3.3.1"
signal-hook-async-std = "0.3.0"
signal-hook = "0.3.18"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
tracing-appender = "0.2.3"
smol = "2.0.2"
# Argument parsing
serde = {version = "1.0.219", features = ["derive"]}
serde = {version = "1.0.228", features = ["derive"]}
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -9,4 +9,4 @@ edition = "2021"
[dependencies]
tfhe = {version = "0.5.4", features = ["boolean", "shortint", "integer", "x86_64-unix", "internal-keycache"]}
rayon = "1.10.0"
rayon = "1.11.0"