2023-02-24 16:54:42 +01:00
|
|
|
[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"
|
2024-05-02 00:19:20 +02:00
|
|
|
version = "0.93.1"
|
2023-02-24 16:54:42 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-02 00:19:20 +02:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.93.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.93.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.93.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.93.1" }
|
2023-02-24 16:54:42 +01:00
|
|
|
|
2024-03-24 00:46:02 +01:00
|
|
|
itertools = { workspace = true }
|
2024-05-22 09:59:33 +02:00
|
|
|
shadow-rs = { version = "0.28", default-features = false }
|
2023-02-24 16:54:42 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-05-22 09:59:33 +02:00
|
|
|
shadow-rs = { version = "0.28", default-features = false }
|
2023-05-22 17:42:38 +02:00
|
|
|
|
|
|
|
[features]
|
2023-06-15 00:27:12 +02:00
|
|
|
mimalloc = []
|
2023-05-22 17:42:38 +02:00
|
|
|
which-support = []
|
|
|
|
trash-support = []
|
|
|
|
sqlite = []
|
|
|
|
static-link-openssl = []
|
2024-04-18 16:33:41 +02:00
|
|
|
system-clipboard = []
|