summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-03-09 12:04:55 +0000
committerbors <bors@rust-lang.org>2023-03-09 12:04:55 +0000
commitad7bbf4b5d4f61d2b05b6dad1bd5880e40fc22f7 (patch)
tree27ff4edb0ed199dbe6865f1b2ceefd0146b65e43
parent34e9a5e37856ba122791ce6d5f04cec9c7c24f2b (diff)
parent0194551f4278b39932d50d60a20dc43490145070 (diff)
downloadrust-libc-0.2.140.tar.gz
Auto merge of #3141 - Amanieu:v0.2.140, r=JohnTitor0.2.140
Bump version to 0.2.140
-rw-r--r--Cargo.toml6
-rw-r--r--libc-test/Cargo.toml12
2 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 15c2b9bf53..3721096743 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "libc"
-version = "0.2.139"
+version = "0.2.140"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-lang/libc"
homepage = "https://github.com/rust-lang/libc"
documentation = "https://docs.rs/libc/"
-keywords = ["libc", "ffi", "bindings", "operating", "system" ]
+keywords = ["libc", "ffi", "bindings", "operating", "system"]
categories = ["external-ffi-bindings", "no-std", "os"]
build = "build.rs"
exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"]
@@ -29,7 +29,7 @@ rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
extra_traits = []
const-extern-fn = []
# use_std is deprecated, use `std` instead
-use_std = [ 'std' ]
+use_std = ['std']
[workspace]
members = ["libc-test"]
diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml
index e291270b05..8cd125934a 100644
--- a/libc-test/Cargo.toml
+++ b/libc-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc-test"
-version = "0.2.139"
+version = "0.2.140"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
build = "build.rs"
@@ -12,7 +12,7 @@ A test crate for the libc crate.
[dependencies.libc]
path = ".."
-version = "0.2.139"
+version = "0.2.140"
default-features = false
[build-dependencies]
@@ -21,10 +21,10 @@ cc = "1.0.61"
ctest2 = "0.4.3"
[features]
-default = [ "std" ]
-std = [ "libc/std" ]
-align = [ "libc/align" ]
-extra_traits = [ "libc/extra_traits" ]
+default = ["std"]
+std = ["libc/std"]
+align = ["libc/align"]
+extra_traits = ["libc/extra_traits"]
[[test]]
name = "main"