diff options
| author | Maarten de Vries <maarten@de-vri.es> | 2021-03-03 20:34:13 +0100 |
|---|---|---|
| committer | Maarten de Vries <maarten@de-vri.es> | 2021-03-05 20:54:14 +0100 |
| commit | c946d1d620f5babbd9ac9ad3d1a9782957386329 (patch) | |
| tree | a18ed833e3c3014804dd08a2750faf56280040f7 | |
| parent | 939b14334dfec68d85b01b62c1be0172cee03339 (diff) | |
| download | rust-c946d1d620f5babbd9ac9ad3d1a9782957386329.tar.gz rust-c946d1d620f5babbd9ac9ad3d1a9782957386329.zip | |
Bump libc dependency of std to 0.2.88.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 0666abadcba..506321fdf9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1910,9 +1910,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.85" +version = "0.2.88" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3" +checksum = "03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a" dependencies = [ "rustc-std-workspace-core", ] diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 275fcc4c292..f0f5558fd16 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -16,7 +16,7 @@ cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] } panic_unwind = { path = "../panic_unwind", optional = true } panic_abort = { path = "../panic_abort" } core = { path = "../core" } -libc = { version = "0.2.85", default-features = false, features = ['rustc-dep-of-std'] } +libc = { version = "0.2.88", default-features = false, features = ['rustc-dep-of-std'] } compiler_builtins = { version = "0.1.39" } profiler_builtins = { path = "../profiler_builtins", optional = true } unwind = { path = "../unwind" } |
