2023-02-24 15:54:42 +00: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-11-12 20:22:38 +00:00
|
|
|
version = "0.100.0"
|
2023-02-24 15:54:42 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2024-08-28 21:37:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-02-24 15:54:42 +00:00
|
|
|
[dependencies]
|
2024-11-12 20:22:38 +00:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.100.0" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.100.0" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.100.0" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.100.0" }
|
2023-02-24 15:54:42 +00:00
|
|
|
|
2024-03-23 23:46:02 +00:00
|
|
|
itertools = { workspace = true }
|
2024-09-22 07:16:20 +00:00
|
|
|
shadow-rs = { version = "0.35", default-features = false }
|
2023-02-24 15:54:42 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-09-22 07:16:20 +00:00
|
|
|
shadow-rs = { version = "0.35", default-features = false }
|
2023-05-22 15:42:38 +00:00
|
|
|
|
|
|
|
[features]
|
2023-06-14 22:27:12 +00:00
|
|
|
mimalloc = []
|
2023-05-22 15:42:38 +00:00
|
|
|
trash-support = []
|
|
|
|
sqlite = []
|
|
|
|
static-link-openssl = []
|
2024-10-15 19:01:08 +00:00
|
|
|
system-clipboard = []
|