nushell/crates/nu-parser/Cargo.toml

30 lines
802 B
TOML
Raw Normal View History

[package]
name = "nu-parser"
2020-04-21 07:01:03 +02:00
version = "0.13.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
2020-04-21 20:34:32 +02:00
description = "Nushell parser"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num-bigint = { version = "0.2.6", features = ["serde"] }
bigdecimal = { version = "0.1.0", features = ["serde"] }
indexmap = { version = "1.3.2", features = ["serde-1"] }
parking_lot = "0.10.0"
num-traits = "0.2.11"
derive-new = "0.5.8"
serde = "1.0.106"
language-reporting = "0.4.0"
log = "0.4.8"
shellexpand = "2.0.0"
2019-12-02 22:14:51 +01:00
2020-04-21 07:01:03 +02:00
nu-source = { version = "0.13.0", path = "../nu-source" }
nu-protocol = { version = "0.13.0", path = "../nu-protocol" }
nu-errors = { version = "0.13.0", path = "../nu-errors" }
[features]
stable = []
trace = []