diff --git a/Cargo.lock b/Cargo.lock index d7242de11336..7c4a8c0fcf73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "ctest" -version = "0.5.0-beta.2" +version = "0.5.0-beta.3" dependencies = [ "askama", "cc", @@ -120,7 +120,7 @@ version = "0.1.0" dependencies = [ "cc", "ctest", - "libc 1.0.0-alpha.1", + "libc 1.0.0-alpha.2", ] [[package]] @@ -183,7 +183,7 @@ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" [[package]] name = "libc" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" dependencies = [ "rustc-std-workspace-core", ] @@ -197,7 +197,7 @@ dependencies = [ "cfg-if", "ctest", "glob", - "libc 1.0.0-alpha.1", + "libc 1.0.0-alpha.2", "proc-macro2", "regex", "syn", diff --git a/Cargo.toml b/Cargo.toml index 912071d3c59e..74cb58492af4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libc" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" keywords = ["libc", "ffi", "bindings", "operating", "system"] categories = ["external-ffi-bindings", "no-std", "os"] exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"] diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index 68c5daa9807a..45f21bf1c116 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/rust-lang/libc" [dependencies] cfg-if = "1.0.4" -libc = { path = "..", version = "1.0.0-alpha.1", default-features = false } +libc = { path = "..", default-features = false } [dev-dependencies] syn = { version = "2.0.108", features = ["full", "visit"] }