Sfoglia il codice sorgente

Update project dependencies.

Luther Blissett 3 anni fa
parent
commit
e5f212a4ad

File diff suppressed because it is too large
+ 163 - 199
Cargo.lock


+ 10 - 10
Cargo.toml

@@ -45,16 +45,16 @@ members = [
 
 [dependencies]
 # Hard dependencies
-libc = "0.2.127"
+libc = "0.2.132"
 log = "0.4.17"
 thiserror = "1.0.32"
 
 # async-runtime
 smol = {version = "1.2.5", optional = true}
-futures = {version = "0.3.21", optional = true}
+futures = {version = "0.3.24", optional = true}
 async-std = {version = "1.12.0", features = ["attributes"], optional = true}
 async-trait = {version = "0.1.57", optional = true}
-async-channel = {version = "1.6.1", optional = true}
+async-channel = {version = "1.7.1", optional = true}
 async-executor = {version = "1.4.1", optional = true}
 
 # async-net
@@ -62,8 +62,8 @@ async-native-tls = {version = "0.4.0", optional = true}
 native-tls = {version = "0.2.10", optional = true}
 
 # Networking
-socket2 = {version = "0.4.4", optional = true}
-futures-rustls = {version = "0.22.1", features = ["dangerous_configuration"], optional = true}
+socket2 = {version = "0.4.6", optional = true}
+futures-rustls = {version = "0.22.2", features = ["dangerous_configuration"], optional = true}
 
 # TLS cert utilities
 ed25519-compact = {version = "1.0.11", features = ["pem"], optional = true}
@@ -76,8 +76,8 @@ bs58 = {version = "0.4.0", optional = true}
 toml = {version = "0.5.9", optional = true}
 bytes = {version = "1.2.1", optional = true}
 bincode = {version = "2.0.0-rc.1", features = ["serde"], optional = true}
-serde_json = {version = "1.0.83", optional = true}
-serde = {version = "1.0.142", features = ["derive"], optional = true}
+serde_json = {version = "1.0.85", optional = true}
+serde = {version = "1.0.144", features = ["derive"], optional = true}
 structopt = {version= "0.3.26", optional = true}
 structopt-toml = {version= "0.5.1", optional = true}
 
@@ -92,7 +92,7 @@ indexmap = {version = "1.9.1", optional = true}
 itertools = {version = "0.10.3", optional = true}
 darkfi-derive = {path = "src/util/derive", optional = true}
 darkfi-derive-internal = {path = "src/util/derive-internal", optional = true}
-chrono = {version = "0.4.19", optional = true}
+chrono = {version = "0.4.22", optional = true}
 regex = {version = "1.6.0", optional = true}
 
 # Misc
@@ -137,13 +137,13 @@ libsqlite3-sys = {version = "0.24.1", features = ["bundled-sqlcipher"],  optiona
 sled = {version = "0.34.7", optional = true}
 
 [dev-dependencies]
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 halo2_proofs = {version = "0.2.0", features = ["dev-graph", "gadget-traces", "sanity-checks"]}
 halo2_gadgets = {version = "0.2.0", features = ["dev-graph", "test-dependencies"]}
 #halo2_proofs = {git = "https://github.com/zcash/halo2.git", rev = "a898d65ae3ad3d41987666f6a03cfc15edae01c4", features = ["dev-graph", "gadget-traces", "sanity-checks"]}
 #halo2_gadgets = {git = "https://github.com/zcash/halo2.git", rev = "a898d65ae3ad3d41987666f6a03cfc15edae01c4", features = ["dev-graph", "test-dependencies"]}
 
-plotters = "0.3.2"
+plotters = "0.3.3"
 
 [features]
 async-runtime = [

+ 8 - 8
bin/cashierd/Cargo.toml

@@ -10,10 +10,10 @@ features = ["wallet", "node", "rpc"]
 [dependencies]
 # Async
 smol = "1.2.5"
-futures = "0.3.21"
+futures = "0.3.24"
 async-std = "1.12.0"
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
@@ -21,7 +21,7 @@ easy-parallel = "3.2.0"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 log = "0.4.17"
 num_cpus = "1.13.1"
 simplelog = "0.12.0"
@@ -30,13 +30,13 @@ url = "2.2.2"
 fxhash = "0.2.1"
 
 # Encoding and parsing
-serde = {version = "1.0.142", features = ["derive"]}
-serde_json = "1.0.83"
+serde = {version = "1.0.144", features = ["derive"]}
+serde_json = "1.0.85"
 
 # Bitcoin bridge dependencies
-bdk = {version = "0.20.0", optional = true}
-anyhow = {version = "1.0.60", optional = true}
-bitcoin = {version = "0.28.1", optional = true}
+bdk = {version = "0.21.0", optional = true}
+anyhow = {version = "1.0.62", optional = true}
+bitcoin = {version = "0.29.1", optional = true}
 secp256k1 = {version = "0.24.0", default-features = false, features = ["rand-std"], optional = true}
 
 # Ethereum bridge dependencies

+ 4 - 4
bin/dao-cli/Cargo.toml

@@ -10,18 +10,18 @@ features = ["rpc"]
 [dependencies]
 # Async
 smol = "1.2.5"
-futures = "0.3.21"
+futures = "0.3.24"
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 
 # Misc
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 log = "0.4.17"
 num_cpus = "1.13.1"
 simplelog = "0.12.0"
 url = "2.2.2"
 
 # Encoding and parsing
-serde_json = "1.0.83"
+serde_json = "1.0.85"

+ 3 - 3
bin/daod/Cargo.toml

@@ -10,10 +10,10 @@ features = ["rpc", "crypto", "tx", "node"]
 [dependencies]
 # Async
 smol = "1.2.5"
-futures = "0.3.21"
+futures = "0.3.24"
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
@@ -35,4 +35,4 @@ crypto_api_chachapoly = "0.5.0"
 group = "0.12.0"
 
 # Encoding and parsing
-serde_json = "1.0.83"
+serde_json = "1.0.85"

+ 5 - 5
bin/darkfid/Cargo.toml

@@ -9,13 +9,13 @@ license = "AGPL-3.0-only"
 edition = "2021"
 
 [dependencies]
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 async-std = "1.12.0"
 async-trait = "0.1.57"
 blake3 = "1.3.1"
 bs58 = "0.4.0"
-chrono = "0.4.19"
+chrono = "0.4.22"
 ctrlc = { version = "3.2.3", features = ["termination"] }
 darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "node"]}
 easy-parallel = "3.2.0"
@@ -26,13 +26,13 @@ lazy-init = "0.5.1"
 log = "0.4.17"
 pasta_curves = "0.4.0"
 rand = "0.8.5"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 sled = "0.34.7"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.142"
-serde_derive = "1.0.142"
+serde = "1.0.144"
+serde_derive = "1.0.144"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"

+ 2 - 2
bin/darkotc/Cargo.toml

@@ -11,10 +11,10 @@ edition = "2021"
 [dependencies]
 async-std = {version = "1.12.0", features = ["attributes"]}
 bs58 = "0.4.0"
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 darkfi = {path = "../../", features = ["crypto", "rpc", "util", "tx"]}
 halo2_proofs = "0.2.0"
 halo2_gadgets = "0.2.0"
 rand = "0.8.5"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 url = "2.2.2"

+ 4 - 4
bin/darkwiki/Cargo.toml

@@ -22,8 +22,8 @@ darkfi = {path = "../../", features = ["rpc"]}
 smol = "1.2.5"
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-trait = "0.1.57"
-async-channel = "1.6.1"
-futures = "0.3.21"
+async-channel = "1.7.1"
+futures = "0.3.24"
 
 # Misc
 log = "0.4.17"
@@ -32,8 +32,8 @@ rand = "0.8.5"
 url = "2.2.2"
 
 # Encoding and parsing
-serde = {version = "1.0.142", features = ["derive"]}
-serde_json = "1.0.83"
+serde = {version = "1.0.144", features = ["derive"]}
+serde_json = "1.0.85"
 structopt = "0.3.26"
 
 

+ 6 - 6
bin/darkwikid/Cargo.toml

@@ -20,16 +20,16 @@ darkfi = {path = "../../", features = ["raft", "net", "rpc"]}
 smol = "1.2.5"
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
-futures = "0.3.21"
+futures = "0.3.24"
 
 # Misc
 log = "0.4.17"
 simplelog = "0.12.0"
 rand = "0.8.5"
-chrono = "0.4.19"
+chrono = "0.4.22"
 thiserror = "1.0.32"
 ctrlc = { version = "3.2.3", features = ["termination"] }
 url = "2.2.2"
@@ -37,12 +37,12 @@ fxhash = "0.2.1"
 colored = "2.0.0"
 
 # Encoding and parsing
-serde = {version = "1.0.142", features = ["derive"]}
-serde_json = "1.0.83"
+serde = {version = "1.0.144", features = ["derive"]}
+serde_json = "1.0.85"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
 unicode-segmentation = "1.9.0"
-crypto_box = {version = "0.8.0", features = ["std"]}
+crypto_box = {version = "0.8.1", features = ["std"]}
 hex = "0.4.3"
 bs58 = "0.4.0"
 sha2 = "0.10.2"

+ 5 - 5
bin/dnetview/Cargo.toml

@@ -10,16 +10,16 @@ features = ["rpc"]
 [dependencies]
 # Tui
 termion = "1.5.6"
-tui = {version = "0.18.0", features = ["termion"]}
+tui = {version = "0.19.0", features = ["termion"]}
 
 # Async
 smol = "1.2.5"
 async-std = {version = "1.12.0", features = ["attributes"]}
 easy-parallel = "3.2.0"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 
 # Misc
-clap = "3.2.16"
+clap = "3.2.18"
 rand = "0.8.5"
 simplelog = "0.12.0"
 log = "0.4.17"
@@ -29,6 +29,6 @@ fxhash = "0.2.1"
 thiserror = "1.0.32"
 
 # Encoding and parsing
-serde_json = "1.0.83"
-serde = {version = "1.0.142", features = ["derive"]}
+serde_json = "1.0.85"
+serde = {version = "1.0.144", features = ["derive"]}
 

+ 3 - 3
bin/drk/Cargo.toml

@@ -10,10 +10,10 @@ edition = "2021"
 
 [dependencies]
 async-std = {version = "1.12.0", features = ["attributes"]}
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 darkfi = {path = "../../", features = ["crypto", "util", "rpc"]}
 log = "0.4.17"
-prettytable-rs = "0.8.0"
-serde_json = "1.0.83"
+prettytable-rs = "0.9.0"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 url = "2.2.2"

+ 5 - 5
bin/faucetd/Cargo.toml

@@ -9,13 +9,13 @@ license = "AGPL-3.0-only"
 edition = "2021"
 
 [dependencies]
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 async-std = "1.12.0"
 async-trait = "0.1.57"
 blake3 = "1.3.1"
 bs58 = "0.4.0"
-chrono = "0.4.19"
+chrono = "0.4.22"
 ctrlc = { version = "3.2.3", features = ["termination"] }
 darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "node"]}
 easy-parallel = "3.2.0"
@@ -24,13 +24,13 @@ hex = "0.4.3"
 lazy-init = "0.5.1"
 log = "0.4.17"
 rand = "0.8.5"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 sled = "0.34.7"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.142"
-serde_derive = "1.0.142"
+serde = "1.0.144"
+serde_derive = "1.0.144"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"

+ 7 - 7
bin/irc-raft/Cargo.toml

@@ -12,20 +12,20 @@ edition = "2021"
 darkfi = {path = "../../", features = ["net", "rpc", "raft"]}
 # Async
 smol = "1.2.5"
-futures = "0.3.21"
-futures-rustls = "0.22.1"
+futures = "0.3.24"
+futures-rustls = "0.22.2"
 async-std = "1.12.0"
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
 # Crypto
-crypto_box = "0.7.2"
+crypto_box = "0.8.1"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 log = "0.4.17"
 simplelog = "0.12.0"
 fxhash = "0.2.1"
@@ -33,8 +33,8 @@ ctrlc = { version = "3.2.3", features = ["termination"] }
 url = "2.2.2"
 
 # Encoding and parsing
-serde_json = "1.0.83"
-serde = {version = "1.0.142", features = ["derive"]}
+serde_json = "1.0.85"
+serde = {version = "1.0.144", features = ["derive"]}
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
 bs58 = "0.4.0"

+ 8 - 8
bin/ircd/Cargo.toml

@@ -14,31 +14,31 @@ categories = []
 darkfi = {path = "../../", features = ["net", "rpc"]}
 # Async
 smol = "1.2.5"
-futures = "0.3.21"
-futures-rustls = "0.22.1"
+futures = "0.3.24"
+futures-rustls = "0.22.2"
 rustls-pemfile = "1.0.1"
 async-std = "1.12.0"
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
 # Crypto
-crypto_box = "0.8.0"
+crypto_box = "0.8.1"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 log = "0.4.17"
 simplelog = "0.12.0"
 fxhash = "0.2.1"
 ctrlc = { version = "3.2.3", features = ["termination"] }
 url = "2.2.2"
-ringbuffer = "0.8.4"
+ringbuffer = "0.8.5"
 
 # Encoding and parsing
-serde_json = "1.0.83"
-serde = {version = "1.0.142", features = ["derive"]}
+serde_json = "1.0.85"
+serde = {version = "1.0.144", features = ["derive"]}
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
 bs58 = "0.4.0"

+ 4 - 4
bin/lilith/Cargo.toml

@@ -14,7 +14,7 @@ categories = []
 darkfi = {path = "../../", features = ["net"]}
 
 # Async
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 async-std = "1.12.0"
 async-trait = "0.1.57"
@@ -25,13 +25,13 @@ futures-lite = "1.12.0"
 # Misc
 fxhash = "0.2.1"
 log = "0.4.17"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.142"
-serde_derive = "1.0.142"
+serde = "1.0.144"
+serde_derive = "1.0.144"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
 toml = "0.5.9"

+ 5 - 5
bin/tau/tau-cli/Cargo.toml

@@ -12,15 +12,15 @@ categories = ["command-line-utilities"]
 
 [dependencies]
 async-std = {version = "1.12.0", features = ["attributes"]}
-chrono = "0.4.19"
-clap = {version = "3.2.16", features = ["derive"]}
+chrono = "0.4.22"
+clap = {version = "3.2.18", features = ["derive"]}
 colored = "2.0.0"
 darkfi = { path = "../../../", features = ["rpc"]}
 fxhash = "0.2.1"
 log = "0.4.17"
-prettytable-rs = "0.8.0"
-serde = {version = "1.0.142", features = ["derive"]}
-serde_json = "1.0.83"
+prettytable-rs = "0.9.0"
+serde = {version = "1.0.144", features = ["derive"]}
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
 textwrap = "0.15.0"

+ 6 - 6
bin/tau/taud/Cargo.toml

@@ -17,27 +17,27 @@ darkfi = { path = "../../../", features = ["rpc", "raft", "net"]}
 smol = "1.2.5"
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
-futures = "0.3.21"
+futures = "0.3.24"
 
 # Misc
 log = "0.4.17"
 simplelog = "0.12.0"
 rand = "0.8.5"
-chrono = "0.4.19"
+chrono = "0.4.22"
 thiserror = "1.0.32"
 ctrlc = { version = "3.2.3", features = ["termination"] }
 url = "2.2.2"
 fxhash = "0.2.1"
 
 # Encoding and parsing
-serde = {version = "1.0.142", features = ["derive"]}
-serde_json = "1.0.83"
+serde = {version = "1.0.144", features = ["derive"]}
+serde_json = "1.0.85"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
-crypto_box = {version = "0.8.0", features = ["std"]}
+crypto_box = {version = "0.8.1", features = ["std"]}
 hex = "0.4.3"
 bs58 = "0.4.0"
 toml = "0.5.9"

+ 2 - 2
bin/vanityaddr/Cargo.toml

@@ -10,8 +10,8 @@ edition = "2021"
 
 [dependencies]
 bs58 = "0.4.0"
-clap = {version = "3.2.16", features = ["derive"]}
-ctrlc = "3.2.2"
+clap = {version = "3.2.18", features = ["derive"]}
+ctrlc = "3.2.3"
 darkfi = {path = "../../", features = ["crypto"]}
 indicatif = "0.17.0"
 num_cpus = "1.13.1"

+ 1 - 1
bin/zkas/Cargo.toml

@@ -9,5 +9,5 @@ license = "AGPL-3.0-only"
 edition = "2021"
 
 [dependencies]
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 darkfi = {path = "../../", features = ["zkas"]}

+ 3 - 3
example/dchat/Cargo.toml

@@ -11,7 +11,7 @@ darkfi = {path = "../../", features = ["net", "rpc"]}
 async-std = "1.12.0"
 async-trait = "0.1.57"
 async-executor = "1.4.1"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 easy-parallel = "3.2.0"
 smol = "1.2.5"
 num_cpus = "1.13.1"
@@ -22,8 +22,8 @@ simplelog = "0.12.0"
 url = "2.2.2"
 
 # Encoding and parsing
-serde_json = "1.0.83"
-serde = {version = "1.0.142", features = ["derive"]}
+serde_json = "1.0.85"
+serde = {version = "1.0.144", features = ["derive"]}
 toml = "0.5.9"
 
 

+ 4 - 4
example/p2pdebug/Cargo.toml

@@ -12,10 +12,10 @@ edition = "2021"
 darkfi = {path = "../../", features = ["net", "rpc"]}
 # Async
 smol = "1.2.5"
-futures = "0.3.21"
+futures = "0.3.24"
 async-std = "1.12.0"
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
@@ -23,11 +23,11 @@ easy-parallel = "3.2.0"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 log = "0.4.17"
 simplelog = "0.12.0"
 fxhash = "0.2.1"
 url = "2.2.2"
 
 # Encoding and parsing
-serde_json = "1.0.83"
+serde_json = "1.0.85"

+ 4 - 4
script/research/dhtd/Cargo.toml

@@ -8,7 +8,7 @@ path = "../../../"
 features = ["dht"]
 
 [dependencies]
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 async-std = "1.12.0"
 async-trait = "0.1.57"
@@ -17,13 +17,13 @@ ctrlc = { version = "3.2.3", features = ["termination"] }
 easy-parallel = "3.2.0"
 futures-lite = "1.12.0"
 log = "0.4.17"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.142"
-serde_derive = "1.0.142"
+serde = "1.0.144"
+serde_derive = "1.0.144"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
 

+ 2 - 2
script/research/fud/fu/Cargo.toml

@@ -10,10 +10,10 @@ edition = "2021"
 
 [dependencies]
 async-std = {version = "1.12.0", features = ["attributes"]}
-clap = {version = "3.2.16", features = ["derive"]}
+clap = {version = "3.2.18", features = ["derive"]}
 darkfi = {path = "../../../../", features = ["util"]}
 log = "0.4.17"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 url = "2.2.2"
 

+ 4 - 4
script/research/fud/fud/Cargo.toml

@@ -9,7 +9,7 @@ license = "AGPL-3.0-only"
 edition = "2021"
 
 [dependencies]
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 async-std = "1.12.0"
 async-trait = "0.1.57"
@@ -19,13 +19,13 @@ darkfi = {path = "../../../../", features = ["dht"]}
 easy-parallel = "3.2.0"
 futures-lite = "1.12.0"
 log = "0.4.17"
-serde_json = "1.0.83"
+serde_json = "1.0.85"
 simplelog = "0.12.0"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.142"
-serde_derive = "1.0.142"
+serde = "1.0.144"
+serde_derive = "1.0.144"
 structopt = "0.3.26"
 structopt-toml = "0.5.1"
 

+ 1 - 1
script/research/nodes-tool/Cargo.toml

@@ -11,7 +11,7 @@ features = ["blockchain", "node", "wallet"]
 
 async-std = "1.12.0"
 blake3 = "1.3.1"
-serde = "1.0.142"
+serde = "1.0.144"
 sled = "0.34.7"
 
 [workspace]

+ 5 - 5
script/research/raft-diag/Cargo.toml

@@ -12,24 +12,24 @@ darkfi = {path = "../../../", features = ["raft"]}
 smol = "1.2.5"
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-trait = "0.1.57"
-async-channel = "1.6.1"
+async-channel = "1.7.1"
 async-executor = "1.4.1"
 easy-parallel = "3.2.0"
-futures = "0.3.21"
+futures = "0.3.24"
 
 # Misc
 log = "0.4.17"
 simplelog = "0.12.0"
 rand = "0.8.5"
-chrono = "0.4.19"
+chrono = "0.4.22"
 thiserror = "1.0.32"
 ctrlc = { version = "3.2.3", features = ["termination"] }
 url = "2.2.2"
 fxhash = "0.2.1"
 
 # Encoding and parsing
-serde = {version = "1.0.142", features = ["derive"]}
-serde_json = "1.0.83"
+serde = {version = "1.0.144", features = ["derive"]}
+serde_json = "1.0.85"
 structopt = "0.3.26"
 hex = "0.4.3"
 bs58 = "0.4.0"

+ 1 - 1
script/research/state_usage_analyser/Cargo.toml

@@ -12,7 +12,7 @@ lazy-init = "0.5.1"
 log = "0.4.17"
 pasta_curves = "0.4.0"
 rand = "0.8.5"
-serde = {version = "1.0.142", features = ["derive"]}
+serde = {version = "1.0.144", features = ["derive"]}
 sled = "0.34.7"
 
 [workspace]

+ 1 - 1
src/util/derive/Cargo.toml

@@ -7,7 +7,7 @@ edition = "2021"
 proc-macro = true
 
 [dependencies]
-proc-macro-crate = "1.2.0"
+proc-macro-crate = "1.2.1"
 proc-macro2 = "1.0.43"
 syn = {version = "1.0.99", features = ["full", "fold"]}
 

Some files were not shown because too many files changed in this diff