summaryrefslogtreecommitdiff
path: root/crates/nu-cmd-lang/Cargo.toml
blob: a48869231d083af5ba744e334f176310a8bc4f9f (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
[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.96.2"

[lib]
bench = false

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

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

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

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