nushell/crates/nu-cmd-lang/Cargo.toml
Stefan Holderbach b088f395dc
Update crate feature flags (#12566)
# Description
Remove unused/effect-less features, make sure we show all relevant
features in `version`

# User-Facing Changes
- **Remove unused feature `wasi`**
- will cause failure to build should you enable it. Otherwise no effect
- **Include feat `system-clipboard` in `version`**
2024-04-18 16:33:41 +02:00

33 lines
858 B
TOML

[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.92.3"
[lib]
bench = false
[dependencies]
nu-engine = { path = "../nu-engine", version = "0.92.3" }
nu-parser = { path = "../nu-parser", version = "0.92.3" }
nu-protocol = { path = "../nu-protocol", version = "0.92.3" }
nu-utils = { path = "../nu-utils", version = "0.92.3" }
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 = []