From f603b7ef8b320f8c8e9f8bed54e79b0adb1c3ffb Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 6 Jul 2021 02:21:28 +0700 Subject: [PATCH] Remove empty `trace` feature. (#3732) In `nu-parser`, this was a relic of when nom was used by the parser and it would enable using `nom-tracable`. --- Cargo.toml | 2 -- crates/nu-parser/Cargo.toml | 1 - crates/nu-stream/Cargo.toml | 1 - 3 files changed, 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 31e50c3524..10e7016e5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -113,8 +113,6 @@ extra = [ wasi = ["inc", "match", "ptree-support", "match", "tree", "rustyline-support"] -trace = ["nu-parser/trace"] - # Stable (Default) fetch = ["nu_plugin_fetch"] inc = ["nu_plugin_inc"] diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 403cce1204..78e19a0381 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -28,4 +28,3 @@ nu-test-support = { version="0.33.1", path="../nu-test-support" } [features] stable = [] -trace = [] diff --git a/crates/nu-stream/Cargo.toml b/crates/nu-stream/Cargo.toml index f0bea5e760..e80d8524c3 100644 --- a/crates/nu-stream/Cargo.toml +++ b/crates/nu-stream/Cargo.toml @@ -15,4 +15,3 @@ futures = { version="0.3.12", features=["compat", "io-compat"] } [features] stable = [] -trace = []