Skip to content

Commit

Permalink
Auto merge of #2868 - teamplayer3:master, r=Amanieu
Browse files Browse the repository at this point in the history
Bump to 0.2.130

Quick fix for target `riscv32imc-esp-espidf`.
  • Loading branch information
bors committed Aug 10, 2022
2 parents e9145c5 + f727202 commit 14e178c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc"
version = "0.2.129"
version = "0.2.130"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions libc-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc-test"
version = "0.2.129"
version = "0.2.130"
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.129"
version = "0.2.130"
default-features = false

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/unix/newlib/espidf/mod.rs
Expand Up @@ -85,7 +85,7 @@ pub const MSG_MORE: ::c_int = 0x10;
pub const MSG_NOSIGNAL: ::c_int = 0x20;
pub const MSG_TRUNC: ::c_int = 0x04;
pub const MSG_CTRUNC: ::c_int = 0x08;
pub const MSG_EOR: c_int = 0x08;
pub const MSG_EOR: ::c_int = 0x08;

pub const PTHREAD_STACK_MIN: ::size_t = 768;

Expand Down

0 comments on commit 14e178c

Please sign in to comment.