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

[lib]
bench = false

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

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

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

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