forked from extern/nushell
Remove the pack-in plugins (#4719)
This commit is contained in:
parent
1157fcf372
commit
7c205d7a3a
22
Cargo.toml
22
Cargo.toml
@ -106,28 +106,6 @@ inherits = "release"
|
|||||||
strip = false
|
strip = false
|
||||||
debug = true
|
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
|
# Main nu binary
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nu"
|
name = "nu"
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
||||||
use nu_plugin_example::Example;
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
serve_plugin(&mut Example {}, CapnpSerializer {})
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
||||||
use nu_plugin_inc::Inc;
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
serve_plugin(&mut Inc::new(), CapnpSerializer {})
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
||||||
use nu_plugin_gstat::GStat;
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
serve_plugin(&mut GStat::new(), CapnpSerializer {})
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
||||||
use nu_plugin_query::Query;
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
serve_plugin(&mut Query::new(), CapnpSerializer {})
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user