Skip to content

Commit ba421ed

Browse files
authored
Cargo: Fix minimum Rust version
Building on v1.63 fails with: ``` error[E0658]: use of unstable library feature 'process_set_process_group' --> ~/.cargo/registry/src/gh.loli.garden-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 ```
1 parent 59c9364 commit ba421ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tokio/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "tokio"
88
# - Create "v1.x.y" git tag.
99
version = "1.32.0"
1010
edition = "2021"
11-
rust-version = "1.63"
11+
rust-version = "1.64"
1212
authors = ["Tokio Contributors <team@tokio.rs>"]
1313
license = "MIT"
1414
readme = "README.md"

0 commit comments

Comments
 (0)