mirror of
https://github.com/nushell/nushell.git
synced 2024-11-14 20:44:29 +01:00
30 lines
802 B
TOML
30 lines
802 B
TOML
[package]
|
|
name = "nu-parser"
|
|
version = "0.13.0"
|
|
authors = ["The Nu Project Contributors"]
|
|
edition = "2018"
|
|
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"
|
|
|
|
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 = []
|