Skip to content

Commit

Permalink
Use version-less manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Feb 5, 2024
1 parent 6af0fb4 commit 2c6a6c4
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ disallowed-methods = [
{ path = "std::env::set_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> 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.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]`

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]`
Expand Down
2 changes: 0 additions & 2 deletions tests/no-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[package]
name = "no-std"
version = "0.0.0"
edition = "2021"
publish = false

[lib]
path = "lib.rs"
Expand Down
2 changes: 0 additions & 2 deletions tools/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[package]
name = "futures-async-stream-internal-codegen"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies]
anyhow = "1"
Expand Down

0 comments on commit 2c6a6c4

Please sign in to comment.