about summary refs log tree commit diff
diff options
context:
space:
mode:
authorklensy <klensy@users.noreply.github.com>2023-02-24 20:45:00 +0300
committerklensy <klensy@users.noreply.github.com>2023-02-24 20:45:00 +0300
commitc3749ddf4c8e3a9461f171591cacaf48ba3e6cc4 (patch)
tree9941622833dd6669649ccb31017d13bfd640a364
parent07c993eba8b76eae497e98433ae075b00f01be10 (diff)
downloadrust-c3749ddf4c8e3a9461f171591cacaf48ba3e6cc4.tar.gz
rust-c3749ddf4c8e3a9461f171591cacaf48ba3e6cc4.zip
test: drop unused deps
-rw-r--r--Cargo.lock2
-rw-r--r--library/test/Cargo.toml2
2 files changed, 0 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3ffa9e590f4..90da94c8afc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5489,10 +5489,8 @@ dependencies = [
 name = "test"
 version = "0.0.0"
 dependencies = [
- "cfg-if",
  "core",
  "getopts",
- "libc",
  "panic_abort",
  "panic_unwind",
  "proc_macro",
diff --git a/library/test/Cargo.toml b/library/test/Cargo.toml
index 61b6f33bce0..18cb023d274 100644
--- a/library/test/Cargo.toml
+++ b/library/test/Cargo.toml
@@ -7,11 +7,9 @@ edition = "2021"
 crate-type = ["dylib", "rlib"]
 
 [dependencies]
-cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
 getopts = { version = "0.2.21", features = ['rustc-dep-of-std'] }
 std = { path = "../std" }
 core = { path = "../core" }
-libc = { version = "0.2", default-features = false }
 panic_unwind = { path = "../panic_unwind" }
 panic_abort = { path = "../panic_abort" }