From ed9e49b520b574298ae777a06bd8b5fc125c05ac Mon Sep 17 00:00:00 2001 From: James Munns Date: Thu, 11 Jul 2024 23:04:48 +0200 Subject: [PATCH] Update MSRV --- cordyceps/Cargo.toml | 4 ++-- maitake-sync/Cargo.toml | 4 ++-- maitake/Cargo.toml | 4 ++-- util/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cordyceps/Cargo.toml b/cordyceps/Cargo.toml index 93e47fa2..dc39bc9f 100644 --- a/cordyceps/Cargo.toml +++ b/cordyceps/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://mycelium.elizas.website" readme = "README.md" keywords = ["intrusive", "no_std", "list", "queue", "lock-free"] categories = ["data-structures", "no-std"] -rust-version = "1.61.0" +rust-version = "1.76.0" [features] default = [] @@ -35,4 +35,4 @@ tracing = { version = "0.1" } [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] \ No newline at end of file +rustdoc-args = ["--cfg", "docsrs"] diff --git a/maitake-sync/Cargo.toml b/maitake-sync/Cargo.toml index c8133d68..4072b9cc 100644 --- a/maitake-sync/Cargo.toml +++ b/maitake-sync/Cargo.toml @@ -17,7 +17,7 @@ categories = [ "concurrency" ] edition = "2021" -rust-version = "1.61.0" +rust-version = "1.76.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -55,4 +55,4 @@ loom = { version = "0.7", features = ["futures", "checkpoint"] } [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] \ No newline at end of file +rustdoc-args = ["--cfg", "docsrs"] diff --git a/maitake/Cargo.toml b/maitake/Cargo.toml index 097042c2..f14e24f5 100644 --- a/maitake/Cargo.toml +++ b/maitake/Cargo.toml @@ -17,7 +17,7 @@ categories = [ "async", ] edition = "2021" -rust-version = "1.61.0" +rust-version = "1.76.0" # NOTE! As a workaround for https://github.com/rust-lang/rust/issues/97708, # maitake uses some `no_mangle` functions. This will cause linker errors if @@ -76,4 +76,4 @@ rustdoc-args = ["--cfg", "docsrs"] [[example]] name = "tokio-console" -required-features = ["tracing-01"] \ No newline at end of file +required-features = ["tracing-01"] diff --git a/util/Cargo.toml b/util/Cargo.toml index 8d7c2769..1567bc75 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -3,7 +3,7 @@ name = "mycelium-util" version = "0.1.0" authors = ["Eliza Weisman "] edition = "2021" -rust-version = "1.61.0" +rust-version = "1.76.0" readme = "README.md" # See more keys and their definitions at