forked from extern/nushell
adfa4d00c0
Based on the hotfix https://github.com/nushell/nushell/releases/tag/0.87.1 use this to disambiguate
31 lines
796 B
TOML
31 lines
796 B
TOML
[package]
|
|
authors = ["The Nushell Project Developers"]
|
|
description = "Nushell's parser"
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "nu-parser"
|
|
version = "0.87.2"
|
|
exclude = ["/fuzz"]
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-engine = { path = "../nu-engine", version = "0.87.2" }
|
|
nu-path = { path = "../nu-path", version = "0.87.2" }
|
|
nu-plugin = { path = "../nu-plugin", optional = true, version = "0.87.2" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.87.2" }
|
|
|
|
bytesize = "1.3"
|
|
chrono = { default-features = false, features = ['std'], version = "0.4" }
|
|
itertools = "0.11"
|
|
log = "0.4"
|
|
serde_json = "1.0"
|
|
|
|
[dev-dependencies]
|
|
rstest = { version = "0.18", default-features = false }
|
|
|
|
[features]
|
|
plugin = ["nu-plugin"]
|