From 64d18d4c51cf37efeaf25759c7c81bfe43095500 Mon Sep 17 00:00:00 2001 From: Cameron Steffen Date: Thu, 7 Oct 2021 13:18:41 -0500 Subject: [PATCH] Remove unused dependencies from rustc_const_eval --- Cargo.lock | 2 -- compiler/rustc_const_eval/Cargo.toml | 2 -- 2 files changed, 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21158381858..102450188aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3736,8 +3736,6 @@ dependencies = [ name = "rustc_const_eval" version = "0.0.0" dependencies = [ - "either", - "gsgdt", "rustc_apfloat", "rustc_ast", "rustc_attr", diff --git a/compiler/rustc_const_eval/Cargo.toml b/compiler/rustc_const_eval/Cargo.toml index 5f659dd977a..4ed908a3833 100644 --- a/compiler/rustc_const_eval/Cargo.toml +++ b/compiler/rustc_const_eval/Cargo.toml @@ -7,8 +7,6 @@ edition = "2021" doctest = false [dependencies] -either = "1.5.0" -gsgdt = "0.1.2" tracing = "0.1" rustc_apfloat = { path = "../rustc_apfloat" } rustc_ast = { path = "../rustc_ast" }