Remove the pack-in plugins (#4719)

This commit is contained in:
JT 2022-03-04 08:57:38 -05:00 committed by GitHub
parent 1157fcf372
commit 7c205d7a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 46 deletions

View File

@ -106,28 +106,6 @@ inherits = "release"
strip = false
debug = true
# Build plugins
[[bin]]
name = "nu_plugin_core_inc"
path = "src/plugins/nu_plugin_core_inc.rs"
required-features = ["inc"]
[[bin]]
name = "nu_plugin_core_example"
path = "src/plugins/nu_plugin_core_example.rs"
required-features = ["example"]
# Extra plugins
[[bin]]
name = "nu_plugin_extra_gstat"
path = "src/plugins/nu_plugin_extra_gstat.rs"
required-features = ["gstat"]
[[bin]]
name = "nu_plugin_extra_query"
path = "src/plugins/nu_plugin_extra_query.rs"
required-features = ["query"]
# Main nu binary
[[bin]]
name = "nu"

View File

@ -1,6 +0,0 @@
use nu_plugin::{serve_plugin, CapnpSerializer};
use nu_plugin_example::Example;
fn main() {
serve_plugin(&mut Example {}, CapnpSerializer {})
}

View File

@ -1,6 +0,0 @@
use nu_plugin::{serve_plugin, CapnpSerializer};
use nu_plugin_inc::Inc;
fn main() {
serve_plugin(&mut Inc::new(), CapnpSerializer {})
}

View File

@ -1,6 +0,0 @@
use nu_plugin::{serve_plugin, CapnpSerializer};
use nu_plugin_gstat::GStat;
fn main() {
serve_plugin(&mut GStat::new(), CapnpSerializer {})
}

View File

@ -1,6 +0,0 @@
use nu_plugin::{serve_plugin, CapnpSerializer};
use nu_plugin_query::Query;
fn main() {
serve_plugin(&mut Query::new(), CapnpSerializer {})
}