Skip to content

Commit

Permalink
Auto merge of #3141 - Amanieu:v0.2.140, r=JohnTitor
Browse files Browse the repository at this point in the history
Bump version to 0.2.140
  • Loading branch information
bors committed Mar 9, 2023
2 parents 34e9a5e + 0194551 commit ad7bbf4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"]
12 changes: 6 additions & 6 deletions libc-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand All @@ -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"
Expand Down

0 comments on commit ad7bbf4

Please sign in to comment.