nushell/crates/nu-parser/Cargo.toml

30 lines
873 B
TOML
Raw Normal View History

[package]
authors = ["The Nu Project Contributors"]
2020-04-21 20:34:32 +02:00
description = "Nushell parser"
2020-07-05 22:12:44 +02:00
edition = "2018"
2020-04-21 20:34:32 +02:00
license = "MIT"
2020-07-05 22:12:44 +02:00
name = "nu-parser"
2021-08-27 10:48:58 +02:00
version = "0.36.1"
[dependencies]
bigdecimal = { package = "bigdecimal-rs", version = "0.2.1", features = ["serde"] }
codespan-reporting = "0.11.0"
2020-07-05 22:12:44 +02:00
derive-new = "0.5.8"
2021-06-22 07:22:33 +02:00
indexmap = { version="1.6.1", features=["serde-1"] }
2021-02-05 21:54:54 +01:00
log = "0.4"
2021-06-22 07:22:33 +02:00
num-bigint = { version="0.3.1", features=["serde"] }
num-traits = "0.2.14"
2021-02-05 21:54:54 +01:00
serde = "1.0"
itertools = "0.10.0"
smart-default = "0.6.0"
2019-12-02 22:14:51 +01:00
2021-08-27 10:48:58 +02:00
nu-errors = { version = "0.36.1", path="../nu-errors" }
nu-data = { version = "0.36.1", path="../nu-data" }
nu-path = { version = "0.36.1", path="../nu-path" }
nu-protocol = { version = "0.36.1", path="../nu-protocol" }
nu-source = { version = "0.36.1", path="../nu-source" }
nu-test-support = { version = "0.36.1", path="../nu-test-support" }
[features]
stable = []