summaryrefslogtreecommitdiff
path: root/crates/nu-parser/Cargo.toml
blob: eea0dbf9b9bfce6af7bc870cb803bddc8b76a752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[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.97.0"
exclude = ["/fuzz"]

[lib]
bench = false

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.97.0" }
nu-path = { path = "../nu-path", version = "0.97.0" }
nu-plugin-engine = { path = "../nu-plugin-engine", optional = true, version = "0.97.0" }
nu-protocol = { path = "../nu-protocol", version = "0.97.0" }

bytesize = { workspace = true }
chrono = { default-features = false, features = ['std'], workspace = true }
itertools = { workspace = true }
log = { workspace = true }
serde_json = { workspace = true }

[dev-dependencies]
rstest = { workspace = true, default-features = false }

[features]
plugin = ["nu-plugin-engine"]