From 44696a889de2aa5bbf07d032a1b5df396e513c7f Mon Sep 17 00:00:00 2001 From: Ryan Levick Date: Fri, 5 Jan 2024 12:25:04 +0100 Subject: [PATCH] Remove libc patch Signed-off-by: Ryan Levick --- Cargo.lock | 5 +++-- Cargo.toml | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6648f11e928b..b8192e333fe91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2151,8 +2151,9 @@ checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760" [[package]] name = "libc" -version = "0.2.151" -source = "git+https://github.com/rylev/rust-libc?rev=fc437f39b197e7713ca91f1385e4b309b3e9a820#fc437f39b197e7713ca91f1385e4b309b3e9a820" +version = "0.2.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" dependencies = [ "rustc-std-workspace-core", ] diff --git a/Cargo.toml b/Cargo.toml index 7454609fc7bde..9b11ae8744b4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -105,8 +105,6 @@ miniz_oxide.debug = 0 object.debug = 0 [patch.crates-io] -libc = { git = "https://github.com/rylev/rust-libc", rev = "fc437f39b197e7713ca91f1385e4b309b3e9a820" } - # See comments in `library/rustc-std-workspace-core/README.md` for what's going on # here rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }