From a39628b497566d56da18af3aff87442cbfd74d8f Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 19 Aug 2019 08:45:07 -0700 Subject: [PATCH] Add a dependency on `core` as well ... for rust-lang/rust#63637 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ec69ad7f..c803bd6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,9 +16,10 @@ categories = ["command-line-interface"] [dependencies] unicode-width = "0.1.5" std = { version = "1.0", package = "rustc-std-workspace-std", optional = true } +core = { version = "1.0", package = "rustc-std-workspace-core", optional = true } [dev-dependencies] log = "0.4" [features] -rustc-dep-of-std = ['unicode-width/rustc-dep-of-std', 'std'] +rustc-dep-of-std = ['unicode-width/rustc-dep-of-std', 'std', 'core']