chore: Update crate dependencies

This commit is contained in:
parazyd
2025-02-09 10:32:33 +01:00
parent 73c2dbd8e5
commit 13620224c0
23 changed files with 450 additions and 323 deletions

693
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -58,7 +58,7 @@ thiserror = "2.0.11"
# async-runtime
async-recursion = {version = "1.1.1", optional = true}
async-trait = {version = "0.1.85", optional = true}
async-trait = {version = "0.1.86", optional = true}
futures = {version = "0.3.31", optional = true}
smol = {version = "2.0.2", optional = true}
pin-project-lite = {version = "0.2.16", optional = true}
@@ -68,29 +68,29 @@ futures-rustls = {version = "0.26.0", default-features = false, features = ["log
# Pluggable Transports
socket2 = {version = "0.5.8", features = ["all"], optional = true}
arti-client = {version = "0.26.0", default-features = false, features = ["async-std", "compression", "error_detail", "rustls", "onion-service-client", "onion-service-service"], optional = true}
tor-error = {version = "0.26.0", optional = true}
tor-rtcompat = {version = "0.26.0", features = ["async-std", "rustls"], optional = true}
tor-hscrypto = {version = "0.26.0", optional = true}
tor-hsservice = {version = "0.26.0", optional = true}
tor-proto = {version = "0.26.0", optional = true}
tor-cell = {version = "0.26.0", optional = true}
arti-client = {version = "0.27.0", default-features = false, features = ["async-std", "compression", "error_detail", "rustls", "onion-service-client", "onion-service-service"], optional = true}
tor-error = {version = "0.27.0", optional = true}
tor-rtcompat = {version = "0.27.0", features = ["async-std", "rustls"], optional = true}
tor-hscrypto = {version = "0.27.0", optional = true}
tor-hsservice = {version = "0.27.0", optional = true}
tor-proto = {version = "0.27.0", optional = true}
tor-cell = {version = "0.27.0", optional = true}
# TLS cert utilities
ed25519-compact = {version = "2.1.1", optional = true}
rcgen = {version = "0.12.1", optional = true}
rustls-pemfile = {version = "2.2.0", optional = true}
x509-parser = {version = "0.16.0", features = ["validate", "verify"], optional = true}
x509-parser = {version = "0.17.0", features = ["validate", "verify"], optional = true}
# Encoding
bs58 = {version = "0.5.1", optional = true}
serde = {version = "1.0.217", features = ["derive"], optional = true}
tinyjson = {version = "2.5.1", optional = true}
httparse = {version = "1.9.5", optional = true}
httparse = {version = "1.10.0", optional = true}
semver = {version = "1.0.25", optional = true}
structopt = {version= "0.3.26", optional = true}
structopt-toml = {version= "0.5.1", optional = true}
toml = {version = "0.8.19", optional = true}
toml = {version = "0.8.20", optional = true}
# Utilities
#darkfi-serial = {path = "src/serial", optional = true}

View File

@@ -15,7 +15,7 @@ miniquad = { git = "https://github.com/not-fl3/miniquad" }
#harfbuzz-sys = "0.6.1"
#harfbuzz-sys = { git = "https://github.com/servo/rust-harfbuzz", features = ["bundled"] }
harfbuzz-sys = { git = "https://github.com/narodnik/rust-harfbuzz2", features = ["bundled"] }
freetype-rs = { version = "0.37.0", features = ["bundled"] }
freetype-rs = { version = "0.38.0", features = ["bundled"] }
image = "0.25.5"
log = { version = "0.4.25", features = ["release_max_level_info"] }
@@ -42,7 +42,7 @@ url = "2.5.4"
semver = "1.0.25"
chrono = "0.4.39"
async-gen = "0.2.3"
async-trait = "0.1.85"
async-trait = "0.1.86"
blake3 = "1.5.5"
simplelog = "0.12.2"
# For log files

View File

@@ -23,10 +23,10 @@ log = "0.4.25"
num-bigint = "0.4.6"
rand = "0.8.5"
sled-overlay = "0.1.6"
toml = "0.8.19"
toml = "0.8.20"
# JSON-RPC
async-trait = "0.1.85"
async-trait = "0.1.86"
tinyjson = "2.5.1"
url = "2.5.4"

View File

@@ -27,14 +27,14 @@ libc = "0.2.169"
sled-overlay = "0.1.6"
# TLS
async-trait = "0.1.85"
async-trait = "0.1.86"
futures = "0.3.31"
futures-rustls = {version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"]}
rustls-pemfile = "2.2.0"
# Crypto
blake3 = "1.5.5"
bcrypt = "0.16.0"
bcrypt = "0.17.0"
crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
rand = "0.8.5"
@@ -44,7 +44,7 @@ url = "2.5.4"
# Encoding and parsing
bs58 = "0.5.1"
toml = "0.8.19"
toml = "0.8.20"
semver = "1.0.25"
# Daemon

View File

@@ -9,7 +9,7 @@ license = "AGPL-3.0-only"
edition = "2021"
[dependencies]
async-trait = "0.1.85"
async-trait = "0.1.86"
blake3 = "1.5.5"
darkfi = {path = "../../../", features = ["dht"]}
darkfi-serial = {version = "0.4.2", features = ["derive", "crypto"]}

View File

@@ -27,7 +27,7 @@ prettytable-rs = "0.10.0"
rand = "0.8.5"
rodio = {version = "0.20.1", default-features = false, features = ["minimp3"]}
rusqlite = {version = "0.32.1", features = ["sqlcipher"]}
toml = "0.8.19"
toml = "0.8.20"
url = "2.5.4"
# Daemon

View File

@@ -17,7 +17,7 @@ async-std = {version = "1.13.0", features = ["attributes"]}
# Misc
clap = {version = "4.4.11", features = ["derive"]}
log = "0.4.25"
serde_json = "1.0.137"
serde_json = "1.0.138"
simplelog = "0.12.2"
url = "2.5.4"

View File

@@ -13,7 +13,7 @@ darkfi = {path = "../../../", features = ["async-daemonize", "geode", "rpc"]}
darkfi-serial = {version = "0.4.2", features = ["hash"]}
# Misc
async-trait = "0.1.85"
async-trait = "0.1.86"
blake3 = "1.5.5"
log = "0.4.25"
tinyjson = "2.5.1"

View File

@@ -31,7 +31,7 @@ blake3 = "1.5.5"
sled-overlay = "0.1.6"
# Misc
async-trait = "0.1.85"
async-trait = "0.1.86"
log = "0.4.25"
tinyjson = "2.5.1"
url = "2.5.4"

View File

@@ -12,12 +12,12 @@ repository = "https://codeberg.org/darkrenaissance/darkfi"
darkfi = {path = "../../", features = ["toml", "async-daemonize", "rpc"]}
# Misc
async-trait = "0.1.85"
async-trait = "0.1.86"
futures = "0.3.31"
log = "0.4.25"
semver = "1.0.25"
tinyjson = "2.5.1"
toml = "0.8.19"
toml = "0.8.20"
url = "2.5.4"
# Daemon

View File

@@ -37,10 +37,10 @@ ring = "0.17.8"
# Encoding and parsing
bs58 = "0.5.1"
toml = "0.8.19"
toml = "0.8.20"
# Misc
async-trait = "0.1.85"
async-trait = "0.1.86"
chrono = "0.4.39"
futures = "0.3.31"
libc = "0.2.169"

View File

@@ -28,7 +28,7 @@ structopt = "0.3.26"
structopt-toml = "0.5.1"
# misc
async-trait = "0.1.85"
async-trait = "0.1.86"
log = "0.4.25"
url = "2.5.4"
# ANCHOR_END: dependencies

View File

@@ -15,7 +15,7 @@ darkfi = {path = "../../", features = ["net", "rpc"]}
smol = "2.0.2"
futures = "0.3.31"
async-std = "1.13.0"
async-trait = "0.1.85"
async-trait = "0.1.86"
async-channel = "2.3.1"
async-executor = "1.13.1"
easy-parallel = "3.3.1"
@@ -31,7 +31,7 @@ fxhash = "0.2.1"
url = "2.5.4"
# Encoding and parsing
serde_json = "1.0.137"
serde_json = "1.0.138"
[lints]
workspace = true

View File

@@ -11,7 +11,7 @@ cargo-fuzz = true
workspace = true
[dependencies]
libfuzzer-sys = "0.4.8"
libfuzzer-sys = "0.4.9"
[dependencies.darkfi]
path = ".."

View File

@@ -39,7 +39,7 @@ url = "2.5.4"
smol = "2.0.2"
# evgrd deps
async-trait = {version = "0.1.85", optional = true}
async-trait = {version = "0.1.86", optional = true}
futures = {version = "0.3.31", optional = true}
semver = {version = "1.0.25", optional = true}
easy-parallel = {version = "3.3.1", optional = true}

View File

@@ -17,7 +17,7 @@ darkfi-serial = "0.4.2"
drk = {path = "../../../bin/drk"}
# JSON-RPC
async-trait = "0.1.85"
async-trait = "0.1.86"
tinyjson = "2.5.1"
url = "2.5.4"

View File

@@ -18,7 +18,7 @@ darkfi-serial = "0.4.2"
log = "0.4.25"
# JSON-RPC
async-trait = "0.1.85"
async-trait = "0.1.86"
tinyjson = "2.5.1"
url = "2.5.4"

View File

@@ -13,13 +13,13 @@ features = ["dht"]
async-channel = "2.3.1"
async-executor = "1.13.1"
async-std = "1.13.0"
async-trait = "0.1.85"
async-trait = "0.1.86"
blake3 = "1.5.5"
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.137"
serde_json = "1.0.138"
simplelog = "0.12.2"
url = "2.5.4"

View File

@@ -12,7 +12,7 @@ darkfi-sdk = {path = "../../../src/sdk", features = ["async"]}
darkfi = {path = "../../../", features = ["util", "async-serial"]}
rand = "0.8.5"
blake2b_simd = "1.0.2"
blake2b_simd = "1.0.3"
num-bigint = "0.4.6"
lazy_static = "1.5.0"

View File

@@ -21,7 +21,7 @@ log = "0.4.25"
sled-overlay = "0.1.6"
# JSON-RPC
async-trait = "0.1.85"
async-trait = "0.1.86"
tinyjson = "2.5.1"
url = "2.5.4"

View File

@@ -9,7 +9,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]
[dependencies]
blake2b_simd = "1.0.2"
blake2b_simd = "1.0.3"
bs58 = "0.5.1"
darkfi-sdk = { path = "../../sdk", features = ["wasm"] }
darkfi-serial = { version = "0.4.2", features = ["derive", "crypto"] }

View File

@@ -28,7 +28,7 @@ bs58 = "0.5.1"
sha2 = "0.10.8"
# Cryptography
blake2b_simd = "1.0.2"
blake2b_simd = "1.0.3"
blake3 = "1.5.5"
chacha20poly1305 = "0.10.1"
halo2_gadgets = "0.3.1"