diff --git a/Cargo.toml b/Cargo.toml index 6da254c18b..073c213df0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -161,6 +161,7 @@ required-features = ["textview"] [[bin]] name = "nu_plugin_docker" path = "src/plugins/docker.rs" +required-features = ["docker"] [[bin]] name = "nu" diff --git a/src/cli.rs b/src/cli.rs index 7b5d49751e..3db0747d01 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -248,7 +248,6 @@ pub async fn cli() -> Result<(), Box> { whole_stream_command(Next), whole_stream_command(Previous), whole_stream_command(Debug), - // whole_stream_command(Docker), whole_stream_command(Lines), whole_stream_command(Shells), whole_stream_command(SplitColumn), diff --git a/src/commands.rs b/src/commands.rs index 5e4287c0af..72c07e38e6 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -11,7 +11,6 @@ pub(crate) mod config; pub(crate) mod cp; pub(crate) mod date; pub(crate) mod debug; -// pub(crate) mod docker; pub(crate) mod echo; pub(crate) mod enter; pub(crate) mod env; @@ -80,7 +79,6 @@ pub(crate) use config::Config; pub(crate) use cp::Cpy; pub(crate) use date::Date; pub(crate) use debug::Debug; -// pub(crate) use docker::Docker; pub(crate) use echo::Echo; pub(crate) use enter::Enter; pub(crate) use env::Env;