nushell/crates/nu-parser/Cargo.toml
Fernando Herrera 88988dc9f4
Plugins signature load (#349)
* saving signatures to file

* loading plugin signature from file

* is_plugin column for help command
2021-11-19 15:51:42 +13:00

16 lines
297 B
TOML

[package]
name = "nu-parser"
version = "0.1.0"
edition = "2018"
[dependencies]
miette = "3.0.0"
thiserror = "1.0.29"
nu-protocol = { path = "../nu-protocol"}
nu-plugin = { path = "../nu-plugin", optional=true}
serde_json = "1.0"
nu-path = {path = "../nu-path"}
[features]
plugin = ["nu-plugin"]