Skip to content

Commit 51e3826

Browse files
committed
Auto merge of #3141 - Amanieu:v0.2.140, r=JohnTitor
Bump version to 0.2.140
2 parents 34e9a5e + 0194551 commit 51e3826

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "libc"
3-
version = "0.2.139"
3+
version = "0.2.140"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rust-lang/libc"
88
homepage = "https://github.com/rust-lang/libc"
99
documentation = "https://docs.rs/libc/"
10-
keywords = ["libc", "ffi", "bindings", "operating", "system" ]
10+
keywords = ["libc", "ffi", "bindings", "operating", "system"]
1111
categories = ["external-ffi-bindings", "no-std", "os"]
1212
build = "build.rs"
1313
exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"]
@@ -29,7 +29,7 @@ rustc-dep-of-std = ['align', 'rustc-std-workspace-core']
2929
extra_traits = []
3030
const-extern-fn = []
3131
# use_std is deprecated, use `std` instead
32-
use_std = [ 'std' ]
32+
use_std = ['std']
3333

3434
[workspace]
3535
members = ["libc-test"]

libc-test/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libc-test"
3-
version = "0.2.139"
3+
version = "0.2.140"
44
authors = ["The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
build = "build.rs"
@@ -12,7 +12,7 @@ A test crate for the libc crate.
1212

1313
[dependencies.libc]
1414
path = ".."
15-
version = "0.2.139"
15+
version = "0.2.140"
1616
default-features = false
1717

1818
[build-dependencies]
@@ -21,10 +21,10 @@ cc = "1.0.61"
2121
ctest2 = "0.4.3"
2222

2323
[features]
24-
default = [ "std" ]
25-
std = [ "libc/std" ]
26-
align = [ "libc/align" ]
27-
extra_traits = [ "libc/extra_traits" ]
24+
default = ["std"]
25+
std = ["libc/std"]
26+
align = ["libc/align"]
27+
extra_traits = ["libc/extra_traits"]
2828

2929
[[test]]
3030
name = "main"

0 commit comments

Comments
 (0)