Skip to content

Commit

Permalink
Cargo: Fix minimum Rust version
Browse files Browse the repository at this point in the history
Building on v1.63 fails with:

```
error[E0658]: use of unstable library feature 'process_set_process_group'
   --> ~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.29.0/src/process/mod.rs:777:18
    |
777 |         self.std.process_group(pgroup);
    |                  ^^^^^^^^^^^^^
    |
    = note: see issue #93857 <rust-lang/rust#93857> for more information
```
  • Loading branch information
progval authored Aug 23, 2023
1 parent 59c9364 commit ba421ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "tokio"
# - Create "v1.x.y" git tag.
version = "1.32.0"
edition = "2021"
rust-version = "1.63"
rust-version = "1.64"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
Expand Down

0 comments on commit ba421ed

Please sign in to comment.