nushell/crates/nu-parser/Cargo.toml

16 lines
297 B
TOML
Raw Normal View History

2021-08-10 18:51:08 +00:00
[package]
name = "nu-parser"
version = "0.1.0"
edition = "2018"
[dependencies]
2021-09-22 23:49:39 +00:00
miette = "3.0.0"
thiserror = "1.0.29"
nu-protocol = { path = "../nu-protocol"}
2021-11-02 20:56:00 +00:00
nu-plugin = { path = "../nu-plugin", optional=true}
serde_json = "1.0"
2021-11-18 19:32:27 +00:00
nu-path = {path = "../nu-path"}
2021-11-02 20:56:00 +00:00
[features]
plugin = ["nu-plugin"]