depolymerization

wire gateway for Bitcoin/Ethereum
Log | Files | Refs | Submodules | README | LICENSE

commit 6efc2a939ab2b37f8e08678e168c9bf805afdeca
parent 30d29f55f46c313bbb0efea004ae25dea8ebab2f
Author: Antoine A <>
Date:   Wed, 20 Jul 2022 22:56:38 +0200

Set msrv to 1.57.0 to follow debian package

Diffstat:
MCargo.lock | 29++++++++++-------------------
Mbtc-wire/Cargo.toml | 2+-
Mcommon/Cargo.toml | 4++--
Meth-wire/Cargo.toml | 2+-
Minstrumentation/Cargo.toml | 2+-
Minstrumentation/src/utils.rs | 2+-
Mwire-gateway/Cargo.toml | 4++--
7 files changed, 18 insertions(+), 27 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -215,7 +215,6 @@ dependencies = [ "libc", "num-integer", "num-traits", - "serde", "winapi", ] @@ -455,9 +454,9 @@ dependencies = [ [[package]] name = "darling" -version = "0.14.1" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02" +checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" dependencies = [ "darling_core", "darling_macro", @@ -465,9 +464,9 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.14.1" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f" +checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" dependencies = [ "fnv", "ident_case", @@ -479,9 +478,9 @@ dependencies = [ [[package]] name = "darling_macro" -version = "0.14.1" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5" +checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" dependencies = [ "darling_core", "quote", @@ -932,7 +931,6 @@ checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" dependencies = [ "autocfg", "hashbrown", - "serde", ] [[package]] @@ -1695,25 +1693,19 @@ dependencies = [ [[package]] name = "serde_with" -version = "2.0.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89df7a26519371a3cce44fbb914c2819c84d9b897890987fa3ab096491cc0ea8" +checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" dependencies = [ - "base64", - "chrono", - "hex", - "indexmap", "serde", - "serde_json", "serde_with_macros", - "time", ] [[package]] name = "serde_with_macros" -version = "2.0.0" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de337f322382fcdfbb21a014f7c224ee041a23785651db67b9827403178f698f" +checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" dependencies = [ "darling", "proc-macro2", @@ -1875,7 +1867,6 @@ dependencies = [ "itoa 1.0.2", "libc", "num_threads", - "serde", "time-macros", ] diff --git a/btc-wire/Cargo.toml b/btc-wire/Cargo.toml @@ -3,7 +3,7 @@ name = "btc-wire" version = "0.1.0" edition = "2021" license = "AGPL-3.0-or-later" -rust-version = "1.56.1" +rust-version = "1.57.0" [features] # Enable random failures diff --git a/common/Cargo.toml b/common/Cargo.toml @@ -3,7 +3,7 @@ name = "common" version = "0.1.0" edition = "2021" license = "AGPL-3.0-or-later" -rust-version = "1.56.1" +rust-version = "1.57.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -11,7 +11,7 @@ rust-version = "1.56.1" # Serialization framework serde = { version = "1.0.140", features = ["derive"] } # Serialization helper -serde_with = "2.0.0" +serde_with = "1.14.0" # JSON serialization serde_json = "1.0.82" # Url format diff --git a/eth-wire/Cargo.toml b/eth-wire/Cargo.toml @@ -3,7 +3,7 @@ name = "eth-wire" version = "0.1.0" edition = "2021" license = "AGPL-3.0-or-later" -rust-version = "1.56.1" +rust-version = "1.57.0" [features] # Enable random failures diff --git a/instrumentation/Cargo.toml b/instrumentation/Cargo.toml @@ -3,7 +3,7 @@ name = "instrumentation" version = "0.1.0" edition = "2021" license = "AGPL-3.0-or-later" -rust-version = "1.56.1" +rust-version = "1.57.0" [dependencies] # Cli args parser diff --git a/instrumentation/src/utils.rs b/instrumentation/src/utils.rs @@ -198,7 +198,7 @@ pub fn cmd_redirect(cmd: &str, args: &[&str], path: &str) -> ChildGuard { pub fn cmd_ok(mut child: ChildGuard, name: &str) { let result = child.0.wait().unwrap(); if !result.success() { - panic!("cmd {name} failed"); + panic!("cmd {} failed", name); } } diff --git a/wire-gateway/Cargo.toml b/wire-gateway/Cargo.toml @@ -3,7 +3,7 @@ name = "wire-gateway" version = "0.1.0" edition = "2021" license = "AGPL-3.0-or-later" -rust-version = "1.56.1" +rust-version = "1.57.0" [dependencies] # Http library @@ -15,7 +15,7 @@ tokio = { version = "1.20.0", features = ["net", "macros", "rt-multi-thread"] } # Serialization framework serde = { version = "1.0.140", features = ["derive"] } # Serialization helper -serde_with = "2.0.0" +serde_with = "1.14.0" # JSON serialization serde_json = "1.0.82" # Url query serialization