소스 검색

Update project dependencies.

parazyd 4 년 전
부모
커밋
c63aabf17f

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 189 - 162
Cargo.lock


+ 6 - 6
Cargo.toml

@@ -38,9 +38,9 @@ members = [
 
 [dependencies]
 # Hard dependencies
-libc = "0.2.124"
-log = "0.4.16"
-thiserror = "1.0.30"
+libc = "0.2.125"
+log = "0.4.17"
+thiserror = "1.0.31"
 
 # async-runtime
 smol = {version = "1.2.5", optional = true}
@@ -71,8 +71,8 @@ toml = {version = "0.5.9", optional = true}
 bytes = {version = "1.1.0", optional = true}
 bincode = {version = "1.3.3", optional = true}
 num-bigint = {version = "0.4.3", features = ["serde"], optional = true}
-serde_json = {version = "1.0.79", optional = true}
-serde = {version = "1.0.136", features = ["derive"], optional = true}
+serde_json = {version = "1.0.81", optional = true}
+serde = {version = "1.0.137", features = ["derive"], optional = true}
 structopt = {version= "0.3.26", optional = true}
 structopt-toml = {version= "0.5.0", optional = true}
 
@@ -129,7 +129,7 @@ libsqlite3-sys = {version = "0.24.2", features = ["bundled-sqlcipher"],  optiona
 sled = {version = "0.34.7", optional = true}
 
 [dev-dependencies]
-clap = {version = "3.1.12", features = ["derive"]}
+clap = {version = "3.1.18", features = ["derive"]}
 
 [features]
 async-runtime = [

+ 5 - 5
bin/cashierd/Cargo.toml

@@ -21,17 +21,17 @@ easy-parallel = "3.2.0"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.1.12", features = ["derive"]}
-log = "0.4.16"
+clap = {version = "3.1.18", features = ["derive"]}
+log = "0.4.17"
 num_cpus = "1.13.1"
 simplelog = "0.12.0"
-thiserror = "1.0.30"
+thiserror = "1.0.31"
 url = "2.2.2"
 fxhash = "0.2.1"
 
 # Encoding and parsing
-serde = {version = "1.0.136", features = ["derive"]}
-serde_json = "1.0.79"
+serde = {version = "1.0.137", features = ["derive"]}
+serde_json = "1.0.81"
 
 # Bitcoin bridge dependencies
 bdk = {version = "0.17.0", optional = true}

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

@@ -17,11 +17,11 @@ async-channel = "1.6.1"
 async-executor = "1.4.1"
 
 # Misc
-clap = {version = "3.1.12", features = ["derive"]}
-log = "0.4.16"
+clap = {version = "3.1.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.79"
+serde_json = "1.0.81"

+ 2 - 2
bin/daod/Cargo.toml

@@ -18,10 +18,10 @@ async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
 # Misc
-log = "0.4.16"
+log = "0.4.17"
 num_cpus = "1.13.1"
 simplelog = "0.12.0"
 url = "2.2.2"
 
 # Encoding and parsing
-serde_json = "1.0.79"
+serde_json = "1.0.81"

+ 4 - 4
bin/darkfid/Cargo.toml

@@ -22,17 +22,17 @@ easy-parallel = "3.2.0"
 futures-lite = "1.12.0"
 fxhash = "0.2.1"
 lazy-init = "0.5.0"
-log = "0.4.16"
+log = "0.4.17"
 num-bigint = {version = "0.4.3", features = ["serde"]}
 pasta_curves = "0.4.0"
 rand = "0.8.5"
-serde_json = "1.0.79"
+serde_json = "1.0.81"
 simplelog = "0.12.0"
 sled = "0.34.7"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.136"
-serde_derive = "1.0.136"
+serde = "1.0.137"
+serde_derive = "1.0.137"
 structopt = "0.3.26"
 structopt-toml = "0.5.0"

+ 6 - 6
bin/dnetview/Cargo.toml

@@ -10,7 +10,7 @@ features = ["rpc"]
 [dependencies]
 # Tui
 termion = "1.5.6"
-tui = {version = "0.17.0", features = ["termion"]}
+tui = {version = "0.18.0", features = ["termion"]}
 
 # Async
 smol = "1.2.5"
@@ -19,16 +19,16 @@ easy-parallel = "3.2.0"
 async-channel = "1.6.1"
 
 # Misc
-clap = "3.1.12"
+clap = "3.1.18"
 rand = "0.8.5"
 simplelog = "0.12.0"
-log = "0.4.16"
+log = "0.4.17"
 num_cpus = "1.13.1"
 url = "2.2.2"
 fxhash = "0.2.1"
-thiserror = "1.0.30"
+thiserror = "1.0.31"
 
 # Encoding and parsing
-serde_json = "1.0.79"
-serde = {version = "1.0.136", features = ["derive"]}
+serde_json = "1.0.81"
+serde = {version = "1.0.137", features = ["derive"]}
 

+ 3 - 3
bin/drk/Cargo.toml

@@ -10,9 +10,9 @@ edition = "2021"
 
 [dependencies]
 async-std = {version = "1.11.0", features = ["attributes"]}
-clap = {version = "3.1.12", features = ["derive"]}
+clap = {version = "3.1.18", features = ["derive"]}
 darkfi = {path = "../../", features = ["crypto", "util", "rpc"]}
-log = "0.4.16"
-serde_json = "1.0.79"
+log = "0.4.17"
+serde_json = "1.0.81"
 simplelog = "0.12.0"
 url = "2.2.2"

+ 4 - 4
bin/faucetd/Cargo.toml

@@ -21,16 +21,16 @@ easy-parallel = "3.2.0"
 futures-lite = "1.12.0"
 hex = "0.4.3"
 lazy-init = "0.5.0"
-log = "0.4.16"
+log = "0.4.17"
 num-bigint = "0.4.3"
 rand = "0.8.5"
-serde_json = "1.0.79"
+serde_json = "1.0.81"
 simplelog = "0.12.0"
 sled = "0.34.7"
 url = "2.2.2"
 
 # Argument parsing
-serde = "1.0.136"
-serde_derive = "1.0.136"
+serde = "1.0.137"
+serde_derive = "1.0.137"
 structopt = "0.3.26"
 structopt-toml = "0.5.0"

+ 5 - 5
bin/ircd/Cargo.toml

@@ -25,16 +25,16 @@ crypto_box = "0.7.2"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.1.8", features = ["derive"]}
-log = "0.4.16"
-simplelog = "0.12.0-alpha1"
+clap = {version = "3.1.18", features = ["derive"]}
+log = "0.4.17"
+simplelog = "0.12.0"
 fxhash = "0.2.1"
 ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
 url = "2.2.2"
 
 # Encoding and parsing
-serde_json = "1.0.79"
-serde = {version = "1.0.136", features = ["derive"]}
+serde_json = "1.0.81"
+serde = {version = "1.0.137", features = ["derive"]}
 structopt = "0.3.26"
 structopt-toml = "0.5.0"
 bs58 = "0.4.0"

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

@@ -15,7 +15,7 @@ async-channel = "1.6.1"
 async-executor = "1.4.1"
 
 # Misc
-log = "0.4.16"
+log = "0.4.17"
 simplelog = "0.12.0"
 url = "2.2.2"
 chrono = "0.4.19"
@@ -23,7 +23,7 @@ prettytable-rs = "0.8.0"
 rand = "0.8.5"
 
 # Encoding and parsing
-serde_json = "1.0.79"
-serde = {version = "1.0.136", features = ["derive"]}
+serde_json = "1.0.81"
+serde = {version = "1.0.137", features = ["derive"]}
 structopt = "0.3.26"
 structopt-toml = "0.5.0"

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

@@ -16,17 +16,17 @@ easy-parallel = "3.2.0"
 futures = "0.3.21"
 
 # Misc
-log = "0.4.16"
+log = "0.4.17"
 simplelog = "0.12.0"
 rand = "0.8.5"
 chrono = "0.4.19"
-thiserror = "1.0.30"
+thiserror = "1.0.31"
 ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
 url = "2.2.2"
 
 # Encoding and parsing
-serde = {version = "1.0.136", features = ["derive"]}
-serde_json = "1.0.79"
+serde = {version = "1.0.137", features = ["derive"]}
+serde_json = "1.0.81"
 structopt = "0.3.26"
 structopt-toml = "0.5.0"
 crypto_box = {version = "0.7.2", features = ["std"]}

+ 3 - 3
bin/vanityaddr/Cargo.toml

@@ -10,10 +10,10 @@ edition = "2021"
 
 [dependencies]
 bs58 = "0.4.0"
-clap = {version = "3.1.12", features = ["derive"]}
-ctrlc = "3.2.1"
+clap = {version = "3.1.18", features = ["derive"]}
+ctrlc = "3.2.2"
 darkfi = {path = "../../", features = ["crypto"]}
 indicatif = "0.17.0-rc.10"
 num_cpus = "1.13.1"
 rand = "0.8.5"
-rayon = "1.5.2"
+rayon = "1.5.3"

+ 1 - 1
bin/zkas/Cargo.toml

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

+ 3 - 3
example/p2pdebug/Cargo.toml

@@ -23,11 +23,11 @@ easy-parallel = "3.2.0"
 rand = "0.8.5"
 
 # Misc
-clap = {version = "3.1.12", features = ["derive"]}
-log = "0.4.16"
+clap = {version = "3.1.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.79"
+serde_json = "1.0.81"

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

@@ -20,13 +20,13 @@ async-executor = "1.4.1"
 easy-parallel = "3.2.0"
 
 # Misc
-clap = {version = "3.1.12", features = ["derive"]}
-log = "0.4.16"
+clap = {version = "3.1.18", features = ["derive"]}
+log = "0.4.17"
 num_cpus = "1.13.1"
 simplelog = "0.12.0"
 
 # Encoding and parsing
-serde = {version = "1.0.136", features = ["derive"]}
-serde_json = "1.0.79"
+serde = {version = "1.0.137", features = ["derive"]}
+serde_json = "1.0.81"
 
 [workspace]

+ 3 - 3
script/research/pasta/Cargo.toml

@@ -7,9 +7,9 @@ edition = "2018"
 [workspace]
 
 [dependencies]
-pasta_curves = "0.3.1"
-ff = "0.11.0"
-group = "0.11.0"
+pasta_curves = "0.4.0"
+ff = "0.12.0"
+group = "0.12.0"
 rand = "0.8.5"
 
 [[bin]]

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

@@ -25,16 +25,16 @@ blake3 = "1.3.1"
 sled = "0.34.7"
 
 # Structopt dependencies for arguments parsing
-serde = "1.0.136"
-serde_derive = "1.0.136"
-serde_json = "1.0.79"
+serde = "1.0.137"
+serde_derive = "1.0.137"
+serde_json = "1.0.81"
 structopt = "0.3.26"
 structopt-toml = "0.5.0"
 toml = "0.5.9"
 
 # Misc
 chrono = "0.4.19"
-log = "0.4.16"
+log = "0.4.17"
 num_cpus = "1.13.1"
 simplelog = "0.12.0"
 

+ 1 - 1
src/sdk/Cargo.toml

@@ -5,5 +5,5 @@ edition = "2021"
 
 [dependencies]
 borsh = "0.9.3"
-thiserror = "1.0.30"
+thiserror = "1.0.31"
 wee_alloc = "0.4.5"

+ 2 - 2
src/util/derive-internal/Cargo.toml

@@ -4,6 +4,6 @@ version = "0.3.0"
 edition = "2021"
 
 [dependencies]
-proc-macro2 = "1.0.37"
+proc-macro2 = "1.0.38"
 quote = "1.0.18"
-syn = {version = "1.0.91", features = ["full", "fold"]}
+syn = {version = "1.0.94", features = ["full", "fold"]}

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

@@ -8,7 +8,7 @@ proc-macro = true
 
 [dependencies]
 proc-macro-crate = "1.1.3"
-proc-macro2 = "1.0.37"
-syn = {version = "1.0.91", features = ["full", "fold"]}
+proc-macro2 = "1.0.38"
+syn = {version = "1.0.94", features = ["full", "fold"]}
 
 darkfi-derive-internal = {path = "../derive-internal"}

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.