diff --git a/Cargo.toml b/Cargo.toml index f072a7f..21a8288 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "stacker" -version = "0.1.16" +version = "0.1.17" +rust-version = "1.63" authors = ["Alex Crichton ", "Simonas Kazlauskas "] build = "build.rs" license = "MIT OR Apache-2.0" @@ -24,7 +25,7 @@ libc = "0.2.156" psm = { path = "psm", version = "0.1.7" } [target.'cfg(windows)'.dependencies.windows-sys] -version = ">=0.34.0, <0.42.0" +version = ">=0.52.0, <0.60.0" features = [ "Win32_System_Memory", "Win32_System_Threading", diff --git a/tests/simple.rs b/tests/simple.rs index d4c7820..bb10937 100644 --- a/tests/simple.rs +++ b/tests/simple.rs @@ -13,6 +13,7 @@ fn recurse(n: usize) { if n != 0 { ensure_sufficient_stack(|| recurse(n - 1)); } + #[allow(dropping_copy_types)] drop(x); }