Skip to content

Commit fa53e0e

Browse files
authored
chore: upgrade deps (#6182)
Description --- Upgrade mio to 0.8.11 due to dependabot finding
1 parent f64be85 commit fa53e0e

File tree

19 files changed

+43
-57
lines changed

19 files changed

+43
-57
lines changed

Cargo.lock

Lines changed: 16 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

applications/minotari_app_grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rand = "0.8"
2626
rcgen = "0.11.3"
2727
subtle = { version = "2.5.0", features = ["core_hint_black_box"] }
2828
thiserror = "1"
29-
tokio = { version = "1.23", features = ["fs"] }
29+
tokio = { version = "1.36", features = ["fs"] }
3030
tonic = { version = "0.8.3", features = ["tls"]}
3131
zeroize = "1"
3232

applications/minotari_app_utilities/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ futures = { version = "^0.3.16", default-features = false, features = ["alloc"]
1717
json5 = "0.4"
1818
log = { version = "0.4.8", features = ["std"] }
1919
rand = "0.8"
20-
tokio = { version = "1.23", features = ["signal"] }
20+
tokio = { version = "1.36", features = ["signal"] }
2121
serde = "1.0.126"
2222
thiserror = "^1.0.26"
2323
dialoguer = { version = "0.10" }

applications/minotari_console_wallet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ tari_hashing = { path = "../../hashing" }
2727

2828
# Uncomment for tokio tracing via tokio-console (needs "tracing" featurs)
2929
console-subscriber = "0.1.8"
30-
#tokio = { version = "1.20", features = ["signal", "tracing"] }
30+
#tokio = { version = "1.36", features = ["signal", "tracing"] }
3131
# Uncomment for normal use (non tokio-console tracing)
32-
tokio = { version = "1.23", features = ["signal"] }
32+
tokio = { version = "1.36", features = ["signal"] }
3333

3434
chrono = { version = "0.4.19", default-features = false }
3535
clap = { version = "3.2", features = ["derive", "env"] }
3636
config = "0.13.0"
37-
crossterm = { version = "0.25.0" }
37+
crossterm = { version = "0.27.0" }
3838
digest = "0.10"
3939
futures = { version = "^0.3.16", default-features = false, features = [
4040
"alloc",

applications/minotari_merge_mining_proxy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bytes = "1.1"
2929
chrono = { version = "0.4.19", default-features = false }
3030
clap = { version = "3.2", features = ["derive", "env"] }
3131
config = { version = "0.13.0" }
32-
crossterm = { version = "0.25.0" }
32+
crossterm = { version = "0.27.0" }
3333
futures = { version = "^0.3.16", features = ["async-await"] }
3434
hex = "0.4.2"
3535
hyper = "0.14.12"
@@ -40,7 +40,7 @@ reqwest = { version = "0.11.4", features = ["json"] }
4040
serde = { version = "1.0.136", features = ["derive"] }
4141
serde_json = "1.0.57"
4242
thiserror = "1.0.26"
43-
tokio = { version = "1.23", features = ["macros"] }
43+
tokio = { version = "1.36", features = ["macros"] }
4444
tonic = "0.8.3"
4545
tracing = "0.1"
4646
url = "2.1.1"

applications/minotari_miner/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bufstream = "0.1"
2323
chrono = { version = "0.4.19", default-features = false }
2424
clap = { version = "3.2", features = ["derive"] }
2525
crossbeam = "0.8"
26-
crossterm = { version = "0.25.0" }
26+
crossterm = { version = "0.27.0" }
2727
derivative = "2.2.0"
2828
futures = "0.3"
2929
hex = "0.4.2"
@@ -35,7 +35,7 @@ rand = "0.8"
3535
serde = { version = "1.0", default_features = false, features = ["derive"] }
3636
serde_json = "1.0.57"
3737
thiserror = "1.0"
38-
tokio = { version = "1.23", default_features = false, features = ["rt-multi-thread"] }
38+
tokio = { version = "1.36", default_features = false, features = ["rt-multi-thread"] }
3939
tonic = { version = "0.8.3", features = ["tls", "tls-roots" ] }
4040

4141
[dev-dependencies]

applications/minotari_node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ chrono = { version = "0.4.19", default-features = false }
3131
clap = { version = "3.2", features = ["derive", "env"] }
3232
console-subscriber = "0.1.8"
3333
config = { version = "0.13.0" }
34-
crossterm = { version = "0.23.1", features = ["event-stream"] }
34+
crossterm = { version = "0.27.0", features = ["event-stream"] }
3535
derive_more = "0.99.17"
3636
either = "1.6.1"
3737
futures = { version = "^0.3.16", default-features = false, features = ["alloc"] }
@@ -45,7 +45,7 @@ rustyline-derive = "0.5"
4545
serde = "1.0.136"
4646
strum = { version = "0.22", features = ["derive"] }
4747
thiserror = "^1.0.26"
48-
tokio = { version = "1.23", features = ["signal"] }
48+
tokio = { version = "1.36", features = ["signal"] }
4949
tonic = { version = "0.8.3", features = ["tls", "tls-roots" ] }
5050

5151
# Metrics

applications/minotari_node/src/commands/cli_loop.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ impl CliLoop {
9898
KeyEvent {
9999
code: KeyCode::Char('c'),
100100
modifiers: KeyModifiers::CONTROL,
101+
kind: _,
102+
state: _,
101103
} => {
102104
return true;
103105
},

base_layer/contacts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rand = "0.8"
3030
serde = "1.0.136"
3131
serde_json = "1.0.79"
3232
thiserror = "1.0.26"
33-
tokio = { version = "1.23", features = ["sync", "macros"] }
33+
tokio = { version = "1.36", features = ["sync", "macros"] }
3434
tower = "0.4"
3535
uuid = { version = "1.3", features = ["v4"] }
3636

base_layer/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ sha2 = "0.10"
8282
strum = "0.22"
8383
strum_macros = "0.22"
8484
thiserror = "1.0.26"
85-
tokio = { version = "1.23", features = ["time", "sync", "macros"] }
85+
tokio = { version = "1.36", features = ["time", "sync", "macros"] }
8686
tracing = "0.1.26"
8787
zeroize = "1"
8888
primitive-types = { version = "0.12", features = ["serde"] }

0 commit comments

Comments
 (0)