diff --git a/.clippy.toml b/.clippy.toml index 99fb46d..d8b0a53 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -11,4 +11,4 @@ disallowed-methods = [ { path = "std::env::set_var", reason = "this is not thread-safe and inherently unsafe; see for more" }, ] disallowed-types = [] -msrv = "1.74" # nightly-2023-10-21 is 1.75 but not full 1.75 since it is nightly. +msrv = "1.74" # nightly-2023-10-29 is 1.75 but not full 1.75 since it is nightly. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b658c97..16d323d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: # This is the minimum supported Rust version of this crate. # When updating this, the reminder to update the minimum supported # Rust version in README.md and .clippy.toml. - - nightly-2023-10-21 + - nightly-2023-10-29 - nightly runs-on: ubuntu-latest timeout-minutes: 60 diff --git a/README.md b/README.md index b14bf34..0c0a220 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ futures-async-stream = "0.2" futures = "0.3" ``` -*Compiler support: requires rustc nightly-2023-10-21+* +*Compiler support: requires rustc nightly-2023-10-29+* ## `#[for_await]` diff --git a/src/lib.rs b/src/lib.rs index 467bb24..76016d6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,7 +17,7 @@ futures-async-stream = "0.2" futures = "0.3" ``` -*Compiler support: requires rustc nightly-2023-10-21+* +*Compiler support: requires rustc nightly-2023-10-29+* ## `#[for_await]` diff --git a/tests/no-std/Cargo.toml b/tests/no-std/Cargo.toml index 5d6a177..051af46 100644 --- a/tests/no-std/Cargo.toml +++ b/tests/no-std/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "no-std" -version = "0.0.0" edition = "2021" -publish = false [lib] path = "lib.rs" diff --git a/tools/codegen/Cargo.toml b/tools/codegen/Cargo.toml index da530b3..7a84461 100644 --- a/tools/codegen/Cargo.toml +++ b/tools/codegen/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "futures-async-stream-internal-codegen" -version = "0.0.0" edition = "2021" -publish = false [dependencies] anyhow = "1"