From 16d5a3de3c8bec2c00d41d7b0a520362cffd18f1 Mon Sep 17 00:00:00 2001 From: Chris Czub Date: Thu, 5 Dec 2024 20:27:42 -0500 Subject: [PATCH] Remove rust-toolchain.toml, change msrv to 1.79 in each crate --- clippy.toml | 2 +- crates/chain-registry/Cargo.toml | 2 +- crates/relayer-cli/Cargo.toml | 2 +- crates/relayer-rest/Cargo.toml | 2 +- crates/relayer-types/Cargo.toml | 2 +- crates/relayer/Cargo.toml | 2 +- crates/telemetry/Cargo.toml | 2 +- rust-toolchain.toml | 4 ---- tools/integration-test/Cargo.toml | 2 +- 9 files changed, 8 insertions(+), 12 deletions(-) delete mode 100644 rust-toolchain.toml diff --git a/clippy.toml b/clippy.toml index 2a31231778..4233c8791a 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.77.1" +msrv = "1.79.0" diff --git a/crates/chain-registry/Cargo.toml b/crates/chain-registry/Cargo.toml index 164395dc1f..324e5b98cf 100644 --- a/crates/chain-registry/Cargo.toml +++ b/crates/chain-registry/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" keywords = ["cosmos", "ibc", "relayer", "chain", "registry"] repository = "https://github.com/informalsystems/hermes" authors = ["Informal Systems "] -rust-version = "1.77.1" +rust-version = "1.79.0" description = """ Service to fetch data from the chain-registry """ diff --git a/crates/relayer-cli/Cargo.toml b/crates/relayer-cli/Cargo.toml index 03b0f7bc01..b2422ffd6a 100644 --- a/crates/relayer-cli/Cargo.toml +++ b/crates/relayer-cli/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] homepage = "https://hermes.informal.systems/" repository = "https://github.com/informalsystems/hermes" authors = ["Informal Systems "] -rust-version = "1.77.1" +rust-version = "1.79.0" description = """ Hermes is an IBC Relayer written in Rust """ diff --git a/crates/relayer-rest/Cargo.toml b/crates/relayer-rest/Cargo.toml index c23285bc46..ebc9a0d2f4 100644 --- a/crates/relayer-rest/Cargo.toml +++ b/crates/relayer-rest/Cargo.toml @@ -8,7 +8,7 @@ readme = "README.md" keywords = ["ibc", "rest", "api", "cosmos", "tendermint"] homepage = "https://hermes.informal.systems/" repository = "https://github.com/informalsystems/hermes" -rust-version = "1.77.1" +rust-version = "1.79.0" description = """ Rust implementation of a RESTful API server for Hermes """ diff --git a/crates/relayer-types/Cargo.toml b/crates/relayer-types/Cargo.toml index 623d8d98d7..c3eee22ff3 100644 --- a/crates/relayer-types/Cargo.toml +++ b/crates/relayer-types/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"] repository = "https://github.com/informalsystems/hermes" authors = ["Informal Systems "] -rust-version = "1.77.1" +rust-version = "1.79.0" description = """ Implementation of the Inter-Blockchain Communication Protocol (IBC). This crate comprises the main data structures and on-chain logic. diff --git a/crates/relayer/Cargo.toml b/crates/relayer/Cargo.toml index f721ab94a7..e67f76646f 100644 --- a/crates/relayer/Cargo.toml +++ b/crates/relayer/Cargo.toml @@ -2,7 +2,7 @@ version = "0.27.2" edition = "2021" -rust-version = "1.77.1" +rust-version = "1.79.0" description = """ Implementation of an IBC Relayer in Rust, as a library """ diff --git a/crates/telemetry/Cargo.toml b/crates/telemetry/Cargo.toml index 13faac718e..f11cef7dea 100644 --- a/crates/telemetry/Cargo.toml +++ b/crates/telemetry/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" keywords = ["cosmos", "ibc", "relayer", "telemetry"] repository = "https://github.com/informalsystems/hermes" authors = ["Informal Systems "] -rust-version = "1.77.1" +rust-version = "1.79.0" description = """ Telemetry service for the Hermes IBC relayer """ diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index c69bf61b8f..0000000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,4 +0,0 @@ -[toolchain] -# Pin Rust 1.79 to avoid API breakage in `time` crate. -channel = "1.79" -components = [ "rustfmt", "rust-analyzer" ] diff --git a/tools/integration-test/Cargo.toml b/tools/integration-test/Cargo.toml index defd628b44..5831dd6c73 100644 --- a/tools/integration-test/Cargo.toml +++ b/tools/integration-test/Cargo.toml @@ -2,7 +2,7 @@ name = "ibc-integration-test" version = "0.27.2" edition = "2021" -rust-version = "1.77.1" +rust-version = "1.79.0" license = "Apache-2.0" readme = "README.md" keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"]