From 27ff44f3f800e626a35a4edbdc863d0ad21dbe3f Mon Sep 17 00:00:00 2001 From: Wilco Kusee Date: Sat, 27 Feb 2021 08:19:35 +0100 Subject: [PATCH] Expose tracing features in chalk-recursive --- chalk-recursive/Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/chalk-recursive/Cargo.toml b/chalk-recursive/Cargo.toml index 395ca95442c..330a77452fa 100644 --- a/chalk-recursive/Cargo.toml +++ b/chalk-recursive/Cargo.toml @@ -9,9 +9,6 @@ readme = "README.md" keywords = ["compiler", "traits", "prolog"] edition = "2018" -[features] -default = [] - [dependencies] rustc-hash = { version = "1.1.0" } tracing = "0.1" @@ -22,3 +19,8 @@ chalk-solve = { version = "0.59.0-dev.0", path = "../chalk-solve" } [dev-dependencies] chalk-integration = { path = "../chalk-integration" } + +[features] +default = ["tracing-full"] + +tracing-full = ["chalk-solve/tracing-subscriber", "chalk-solve/tracing-tree"]