summaryrefslogtreecommitdiff
path: root/crates/nu-cmd-lang/Cargo.toml
blob: be583306dbca51b514b0fc4092cd85e9defcbead (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
31
32
33
[package]
authors = ["The Nushell Project Developers"]
build = "build.rs"
description = "Nushell's core language commands"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-lang"
edition = "2021"
license = "MIT"
name = "nu-cmd-lang"
version = "0.93.0"

[lib]
bench = false

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.93.0" }
nu-parser = { path = "../nu-parser", version = "0.93.0" }
nu-protocol = { path = "../nu-protocol", version = "0.93.0" }
nu-utils = { path = "../nu-utils", version = "0.93.0" }

itertools = { workspace = true }
shadow-rs = { version = "0.27", default-features = false }

[build-dependencies]
shadow-rs = { version = "0.27", default-features = false }

[features]
mimalloc = []
which-support = []
trash-support = []
sqlite = []
dataframe = []
static-link-openssl = []
system-clipboard = []