From 9db50a3e5544d788935e8b55e6d71c2c84feb6a1 Mon Sep 17 00:00:00 2001 From: jbesraa Date: Wed, 19 Jun 2024 11:49:35 +0300 Subject: [PATCH] Remove rust version pinning from `.toml` files --- protocols/Cargo.toml | 1 - roles/Cargo.toml | 1 - rust-toolchain.toml | 4 ---- utils/Cargo.toml | 1 - 4 files changed, 7 deletions(-) delete mode 100644 rust-toolchain.toml diff --git a/protocols/Cargo.toml b/protocols/Cargo.toml index 90d917fdd..d1f21ca36 100644 --- a/protocols/Cargo.toml +++ b/protocols/Cargo.toml @@ -2,7 +2,6 @@ name = "stratum_v2_protocols" version = "1.0.0" authors = ["The Stratum v2 Developers"] edition = "2021" -rust-version = "1.75.0" description = "The Stratum protocol defines how miners, proxies, and pools communicate to contribute hashrate to the Bitcoin network. Stratum v2 is a robust set of primitives which anyone can use to expand the protocol or implement a role." documentation = "https://github.com/stratum-mining/stratum" readme = "README.md" diff --git a/roles/Cargo.toml b/roles/Cargo.toml index 2155409ba..109cfd0ee 100644 --- a/roles/Cargo.toml +++ b/roles/Cargo.toml @@ -2,7 +2,6 @@ name = "stratum_v2_roles" version = "0.1.0" authors = ["The Stratum v2 Developers"] edition = "2021" -rust-version = "1.75.0" description = "The Stratum protocol defines how miners, proxies, and pools communicate to contribute hashrate to the Bitcoin network. Stratum v2 is a robust set of primitives which anyone can use to expand the protocol or implement a role." documentation = "https://github.com/stratum-mining/stratum" readme = "README.md" diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index ecc22580b..000000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,4 +0,0 @@ -[toolchain] -channel = "1.75.0" -components = [ "rustfmt", "clippy" ] -profile = "minimal" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 194360857..aa22ee1ae 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -2,7 +2,6 @@ name = "stratum_v2_utils" version = "1.0.0" authors = ["The Stratum v2 Developers"] edition = "2021" -rust-version = "1.75.0" description = "The Stratum protocol defines how miners, proxies, and pools communicate to contribute hashrate to the Bitcoin network. Stratum v2 is a robust set of primitives which anyone can use to expand the protocol or implement a role." documentation = "https://github.com/stratum-mining/stratum" readme = "README.md"