Skip to content

Commit

Permalink
Merge branch 'main' into mock-search-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron1024 committed Dec 1, 2022
2 parents 746728e + 24ca525 commit 567a085
Show file tree
Hide file tree
Showing 15 changed files with 76 additions and 139 deletions.
178 changes: 58 additions & 120 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/catalyst-toolbox/catalyst-toolbox/Cargo.toml
Expand Up @@ -53,7 +53,7 @@ thiserror = "1.0"
tokio = { version = "1.8", features = ["rt", "macros"] }
url = "2.2"
hex = "0.4"
image = "0.23.12"
image = "0.23"
qrcode = "0.12"
quircs = "0.10.0"
symmetric-cipher = { path = "../../chain-wallet-libs/symmetric-cipher" }
Expand Down
2 changes: 1 addition & 1 deletion src/chain-wallet-libs/wallet/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ chain-path-derivation = { path = "../chain-path-derivation" }
hdkeygen = { path = "../hdkeygen" }
hex = "0.4.2"
itertools = "0.10"
hashlink = "0.7.0"
hashlink = "0.8"
zeroize = "1.5.3"

chain-time = { path = "../../chain-libs/chain-time" }
Expand Down
2 changes: 1 addition & 1 deletion src/jormungandr/jormungandr-lib/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ description = "Data structures and formats used by Jormungandr node API and conf

[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_with = { version = "1.12", features = ["macros"] }
serde_with = { version = "2", features = ["macros"] }
chain-impl-mockchain = { path = "../../chain-libs/chain-impl-mockchain" }
chain-addr = { path = "../../chain-libs/chain-addr" }
chain-core = { path = "../../chain-libs/chain-core" }
Expand Down
2 changes: 1 addition & 1 deletion src/jormungandr/jormungandr/Cargo.toml
Expand Up @@ -63,7 +63,7 @@ tonic = "0.6"
url = { version = "2", features = ["serde"] }
lru = "0.7"
warp = { version = "0.3.2", features = ["tls"] }
serde_with = { version = "1.12", features = ["macros"] }
serde_with = { version = "2", features = ["macros"] }
http-zipkin = "0.3.0"
prometheus = { version = "0.13", optional = true }
jsonrpsee-http-server = { version = "0.11.0" }
Expand Down
2 changes: 1 addition & 1 deletion src/jormungandr/testing/jormungandr-automation/Cargo.toml
Expand Up @@ -38,7 +38,7 @@ humantime = "2.0"
custom_debug = "0.5"
thiserror = "1.0"
poldercast = "1.2"
sysinfo = { version = "0.23.1" }
sysinfo = "0.26"
os_info = { version = "3.3.0", default-features = false }
zip = "0.6.0"
flate2 = "1.0.21"
Expand Down
6 changes: 3 additions & 3 deletions src/jortestkit/Cargo.toml
Expand Up @@ -19,7 +19,7 @@ time = { version = "0.3", features = ["formatting", "parsing"] }
humantime = "2.0"
custom_debug = "0.5"
thiserror = "1.0"
sysinfo = { version = "0.14.10" }
sysinfo = { version = "0.26" }
os_info = { version = "3.1", default-features = false }
zip = { version = "0.6.0", default-features = false }
flate2 = "1.0.16"
Expand All @@ -33,7 +33,7 @@ predicates = "2.1"
indicatif = "0.15.0"
fs_extra = "1.1.0"
console = "0.15"
dialoguer = "0.9"
dialoguer = "0.10"
semver = "1.0"
csv = "1.1.3"
warp = "0.3"
Expand All @@ -45,4 +45,4 @@ sha-1 = "0.9"
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["blocking", "rustls-tls"]
features = ["blocking", "rustls-tls"]
Expand Up @@ -6,8 +6,7 @@ use crate::measurement::{
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use std::thread::JoinHandle;
use sysinfo::AsU32;
use sysinfo::{ProcessExt, SystemExt};
use sysinfo::{PidExt, ProcessExt, SystemExt};
use thiserror::Error;

#[derive(Error, Debug)]
Expand Down Expand Up @@ -126,7 +125,7 @@ impl ConsumptionBenchmarkRun {

for (named_process, resources) in self.markers.iter_mut() {
let (_, process) = system
.get_processes()
.processes()
.iter()
.find(|(pid, _)| (named_process.id() as u32) == pid.as_u32())
.ok_or_else(|| ConsumptionBenchmarkError::NoProcessWitId(named_process.clone()))?;
Expand Down
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
base64 = "0.12.1"
base64 = "0.13"
time = "0.3"
csv = "1.1"
diesel = "1.4"
Expand Down
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
async-trait = "0.1.33"
base64 = "0.12.1"
base64 = "0.13"
time = { version = "0.3", features = ["parsing", "formatting"] }
diesel = { version = "1.4.5", features = ["postgres", "sqlite", "r2d2", "64-column-tables"] }
diesel_migrations = "1.4.0"
Expand Down
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
base64 = "0.12.1"
base64 = "0.13"
cfg-if = "0.1"
time = { version = "0.3", features = ["formatting", "parsing", "macros"] }
diesel = { version = "1.4.4", features = ["sqlite", "r2d2"] }
Expand Down
2 changes: 1 addition & 1 deletion src/vit-testing/iapyx/Cargo.toml
Expand Up @@ -49,7 +49,7 @@ warp = { version = "0.3", features = ["tls"] }
warp-reverse-proxy = "0.3.2"
tokio = { version = "^1.4.0", features = ["macros", "signal", "rt", "fs", "sync"] }
url = "2.1.1"
image = "0.23.12"
image = "0.23"
eccoxide = { git = "https://github.com/eugene-babichenko/eccoxide.git", branch = "fast-u64-scalar-mul", features = ["fast-u64-scalar-mul"], optional = true }
rayon = "1"
bincode = "1.3.3"
Expand Down
2 changes: 1 addition & 1 deletion src/vit-testing/integration-tests/Cargo.toml
Expand Up @@ -34,7 +34,7 @@ catalyst-toolbox = { path = "../../catalyst-toolbox/catalyst-toolbox", features=
snapshot-lib = { path = "../../catalyst-toolbox/snapshot-lib", features=["test-api"]}
thiserror = "1.0"
netstat2 = "0.9"
image = "0.23.9"
image = "0.23"
rand = "0.8"
hex = "0.4.3"
lazy_static = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/vit-testing/registration-service/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ futures = "0.3.8"
libmath = "0.2.1"
serde = { version = "1", features = ["derive"] }
warp = "0.3"
image = "0.23.9"
image = "0.23"
thiserror = "1.0"
tokio = { version = "1.2", features = ["macros","rt","process"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/vit-testing/vitup/Cargo.toml
Expand Up @@ -64,8 +64,8 @@ serde = { version = "1", features = ["derive"] }
warp = "0.3"
tokio = { version = "1.4", features = ["macros","rt","rt-multi-thread"] }
json = "0.12.4"
image = "0.23.12"
base64 = "0.12.1"
image = "0.23"
base64 = "0.13"
uuid = { version = "0.8", features = ["serde", "v4"] }
tracing-subscriber = { version = "0.3", features= ["std", "env-filter"] }
tracing = "0.1"
Expand Down

0 comments on commit 567a085

Please sign in to comment.