diff --git a/Cargo.toml b/Cargo.toml index 66c3e5f58..aac1018fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo" -version = "0.70.0" +version = "0.70.1" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://crates.io" @@ -90,6 +90,7 @@ features = [ "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_IO", + "Win32_System_Console", "Win32_System_Threading", "Win32_System_JobObjects", "Win32_Security", diff --git a/src/doc/src/reference/semver.md b/src/doc/src/reference/semver.md index c8d7167fc..22c42610f 100644 --- a/src/doc/src/reference/semver.md +++ b/src/doc/src/reference/semver.md @@ -944,7 +944,7 @@ pub fn foo() {} use updated_crate::foo; fn main() { - foo::(); // Error: this function takes 2 generic arguments but 1 generic argument was supplied + foo::(); // Error: function takes 2 generic arguments but 1 generic argument was supplied } ```