mirror of
https://github.com/nushell/nushell
synced 2024-11-15 01:17:07 +00:00
b088f395dc
# 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`**
33 lines
858 B
TOML
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 = []
|