chore: Update crate dependencies

This commit is contained in:
parazyd
2024-03-05 08:34:22 +01:00
parent 551b96d4f9
commit 0de97d0db3
37 changed files with 982 additions and 934 deletions

View File

@@ -11,7 +11,7 @@ edition = "2021"
[dependencies]
blake3 = "1.5.0"
clap = {version = "4.4.14", features = ["derive"]}
clap = {version = "4.5.1", features = ["derive"]}
darkfi = {path = "../../../", features = ["blockchain", "wallet", "rpc"]}
darkfi-sdk = {path = "../../../src/sdk"}
sled = "0.34.7"

View File

@@ -10,22 +10,22 @@ path = "../../../"
features = ["dht"]
[dependencies]
async-channel = "2.1.1"
async-executor = "1.8.0"
async-channel = "2.2.0"
async-executor = "1.9.0"
async-std = "1.12.0"
async-trait = "0.1.77"
blake3 = "1.5.0"
ctrlc = { version = "3.4.2", features = ["termination"] }
easy-parallel = "3.3.1"
futures-lite = "2.2.0"
log = "0.4.20"
serde_json = "1.0.111"
simplelog = "0.12.1"
log = "0.4.21"
serde_json = "1.0.114"
simplelog = "0.12.2"
url = "2.5.0"
# Argument parsing
serde = "1.0.195"
serde_derive = "1.0.195"
serde = "1.0.197"
serde_derive = "1.0.197"
structopt = "0.3.26"
structopt-toml = "0.5.1"

View File

@@ -19,9 +19,9 @@ darkfi-contract-test-harness = {path = "../../../src/contract/test-harness"}
darkfi-serial = {path = "../../../src/serial"}
# Misc
anyhow = "1.0.79"
anyhow = "1.0.80"
async-std = {version = "1.12.0", features = ["attributes"]}
clap = {version = "4.4.14", features = ["derive"]}
clap = {version = "4.5.1", features = ["derive"]}
sled = "0.34.7"
[patch.crates-io]

View File

@@ -9,7 +9,7 @@ edition = "2021"
[dependencies]
async-std = "1.12.0"
dashu = { version = "0.4.0", git = "https://github.com/ertosns/dashu" }
dashu = { version = "0.4.2", git = "https://github.com/ertosns/dashu" }
darkfi = {path = "../../../", features = ["blockchain"]}
darkfi-sdk = {path = "../../../src/sdk"}
rand = "0.8.5"

View File

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

View File

@@ -9,10 +9,10 @@ edition = "2021"
[dependencies]
aes-gcm-siv = "0.11.1"
curve25519-dalek = {version = "4.1.1", features = ["digest", "legacy_compatibility"]}
curve25519-dalek = {version = "4.1.2", features = ["digest", "legacy_compatibility"]}
digest = "0.10.7"
ed25519-dalek = "2.1.0"
kyber-kem = "0.1.1"
ed25519-dalek = "2.1.1"
kyber-kem = "0.1.3"
rand = "0.8.5"
sha2 = "0.10.8"
x25519-dalek = {version = "2.0.0", features = ["static_secrets"]}
x25519-dalek = {version = "2.0.1", features = ["static_secrets"]}