Skip to content

Commit c58e258

Browse files
committed
Pin libc to 0.2.103 that includes esp-idf fixes
1 parent 9a0470b commit c58e258

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

library/panic_abort/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ doc = false
1515
alloc = { path = "../alloc" }
1616
cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
1717
core = { path = "../core" }
18-
libc = { version = "0.2", default-features = false }
18+
libc = { version = "=0.2.103", default-features = false }
1919
compiler_builtins = "0.1.0"

library/panic_unwind/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ doc = false
1414
[dependencies]
1515
alloc = { path = "../alloc" }
1616
core = { path = "../core" }
17-
libc = { version = "0.2", default-features = false }
17+
libc = { version = "=0.2.103", default-features = false }
1818
unwind = { path = "../unwind" }
1919
compiler_builtins = "0.1.0"
2020
cfg-if = "0.1.8"

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
1515
panic_unwind = { path = "../panic_unwind", optional = true }
1616
panic_abort = { path = "../panic_abort" }
1717
core = { path = "../core" }
18-
libc = { version = "0.2.103", default-features = false, features = ['rustc-dep-of-std'] }
18+
libc = { version = "=0.2.103", default-features = false, features = ['rustc-dep-of-std'] }
1919
compiler_builtins = { version = "0.1.44" }
2020
profiler_builtins = { path = "../profiler_builtins", optional = true }
2121
unwind = { path = "../unwind" }

library/unwind/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doc = false
1515

1616
[dependencies]
1717
core = { path = "../core" }
18-
libc = { version = "0.2.79", features = ['rustc-dep-of-std'], default-features = false }
18+
libc = { version = "=0.2.103", features = ['rustc-dep-of-std'], default-features = false }
1919
compiler_builtins = "0.1.0"
2020
cfg-if = "0.1.8"
2121

0 commit comments

Comments
 (0)