From c3749ddf4c8e3a9461f171591cacaf48ba3e6cc4 Mon Sep 17 00:00:00 2001 From: klensy Date: Fri, 24 Feb 2023 20:45:00 +0300 Subject: [PATCH] test: drop unused deps --- Cargo.lock | 2 -- library/test/Cargo.toml | 2 -- 2 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ffa9e590f402..90da94c8afc97 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 61b6f33bce020..18cb023d274a4 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" }