From d0e3ff01a808d429baf925bf0e6e5f2273de1ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20H=C3=BCbener?= Date: Wed, 10 Aug 2022 08:57:54 +0000 Subject: [PATCH 1/4] fixed type path --- src/unix/newlib/espidf/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/newlib/espidf/mod.rs b/src/unix/newlib/espidf/mod.rs index 96e604c674725..804cd66454f46 100644 --- a/src/unix/newlib/espidf/mod.rs +++ b/src/unix/newlib/espidf/mod.rs @@ -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; From 0e5cd2cbc267c482cc1d4ccbf984b8829801226b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20H=C3=BCbener?= Date: Wed, 10 Aug 2022 09:02:04 +0000 Subject: [PATCH 2/4] bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3081d5e5b25e9..873928ecb58e1 100644 --- a/Cargo.toml +++ b/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" From 18e16bcdb25527a8e99e876bfb262b2a239123a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20H=C3=BCbener?= Date: Wed, 10 Aug 2022 14:26:08 +0200 Subject: [PATCH 3/4] bump version --- libc-test/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index ebfe130ca7918..4665f0c13ee7f 100644 --- a/libc-test/Cargo.toml +++ b/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" From f727202a4f70cead6327ef71f901be230c93f8bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20H=C3=BCbener?= Date: Wed, 10 Aug 2022 14:59:25 +0200 Subject: [PATCH 4/4] bump dep libc version --- libc-test/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index 4665f0c13ee7f..e80fdc1f5e0d5 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -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]