Skip to content

Commit 5394af9

Browse files
authored
Merge branch 'main' into docs-1
2 parents 43bb933 + 24ca525 commit 5394af9

File tree

15 files changed

+75
-138
lines changed

15 files changed

+75
-138
lines changed

Cargo.lock

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

src/catalyst-toolbox/catalyst-toolbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ thiserror = "1.0"
5353
tokio = { version = "1.8", features = ["rt", "macros"] }
5454
url = "2.2"
5555
hex = "0.4"
56-
image = "0.23.12"
56+
image = "0.23"
5757
qrcode = "0.12"
5858
quircs = "0.10.0"
5959
symmetric-cipher = { path = "../../chain-wallet-libs/symmetric-cipher" }

src/chain-wallet-libs/wallet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ chain-path-derivation = { path = "../chain-path-derivation" }
1515
hdkeygen = { path = "../hdkeygen" }
1616
hex = "0.4.2"
1717
itertools = "0.10"
18-
hashlink = "0.7.0"
18+
hashlink = "0.8"
1919
zeroize = "1.5.3"
2020

2121
chain-time = { path = "../../chain-libs/chain-time" }

src/jormungandr/jormungandr-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Data structures and formats used by Jormungandr node API and conf
88

99
[dependencies]
1010
serde = { version = "1.0", features = ["derive"] }
11-
serde_with = { version = "1.12", features = ["macros"] }
11+
serde_with = { version = "2", features = ["macros"] }
1212
chain-impl-mockchain = { path = "../../chain-libs/chain-impl-mockchain" }
1313
chain-addr = { path = "../../chain-libs/chain-addr" }
1414
chain-core = { path = "../../chain-libs/chain-core" }

src/jormungandr/jormungandr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ tonic = "0.6"
6363
url = { version = "2", features = ["serde"] }
6464
lru = "0.7"
6565
warp = { version = "0.3.2", features = ["tls"] }
66-
serde_with = { version = "1.12", features = ["macros"] }
66+
serde_with = { version = "2", features = ["macros"] }
6767
http-zipkin = "0.3.0"
6868
prometheus = { version = "0.13", optional = true }
6969
jsonrpsee-http-server = { version = "0.11.0" }

src/jormungandr/testing/jormungandr-automation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ humantime = "2.0"
3838
custom_debug = "0.5"
3939
thiserror = "1.0"
4040
poldercast = "1.2"
41-
sysinfo = { version = "0.23.1" }
41+
sysinfo = "0.26"
4242
os_info = { version = "3.3.0", default-features = false }
4343
zip = "0.6.0"
4444
flate2 = "1.0.21"

src/jortestkit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ time = { version = "0.3", features = ["formatting", "parsing"] }
1919
humantime = "2.0"
2020
custom_debug = "0.5"
2121
thiserror = "1.0"
22-
sysinfo = { version = "0.14.10" }
22+
sysinfo = { version = "0.26" }
2323
os_info = { version = "3.1", default-features = false }
2424
zip = { version = "0.6.0", default-features = false }
2525
flate2 = "1.0.16"
@@ -33,7 +33,7 @@ predicates = "2.1"
3333
indicatif = "0.15.0"
3434
fs_extra = "1.1.0"
3535
console = "0.15"
36-
dialoguer = "0.9"
36+
dialoguer = "0.10"
3737
semver = "1.0"
3838
csv = "1.1.3"
3939
warp = "0.3"
@@ -45,4 +45,4 @@ sha-1 = "0.9"
4545
[dependencies.reqwest]
4646
version = "0.11"
4747
default-features = false
48-
features = ["blocking", "rustls-tls"]
48+
features = ["blocking", "rustls-tls"]

src/jortestkit/src/measurement/benchmark/consumption_benchmark.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ use crate::measurement::{
66
use std::collections::HashMap;
77
use std::sync::{Arc, Mutex};
88
use std::thread::JoinHandle;
9-
use sysinfo::AsU32;
10-
use sysinfo::{ProcessExt, SystemExt};
9+
use sysinfo::{PidExt, ProcessExt, SystemExt};
1110
use thiserror::Error;
1211

1312
#[derive(Error, Debug)]
@@ -126,7 +125,7 @@ impl ConsumptionBenchmarkRun {
126125

127126
for (named_process, resources) in self.markers.iter_mut() {
128127
let (_, process) = system
129-
.get_processes()
128+
.processes()
130129
.iter()
131130
.find(|(pid, _)| (named_process.id() as u32) == pid.as_u32())
132131
.ok_or_else(|| ConsumptionBenchmarkError::NoProcessWitId(named_process.clone()))?;

src/vit-servicing-station/vit-servicing-station-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
base64 = "0.12.1"
11+
base64 = "0.13"
1212
time = "0.3"
1313
csv = "1.1"
1414
diesel = "1.4"

src/vit-servicing-station/vit-servicing-station-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99

1010
[dependencies]
1111
async-trait = "0.1.33"
12-
base64 = "0.12.1"
12+
base64 = "0.13"
1313
time = { version = "0.3", features = ["parsing", "formatting"] }
1414
diesel = { version = "1.4.5", features = ["postgres", "sqlite", "r2d2", "64-column-tables"] }
1515
diesel_migrations = "1.4.0"

0 commit comments

Comments
 (0)