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-06-26 03:26:07 +02:00
|
|
|
version = "0.95.1"
|
2023-02-24 16:54:42 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-26 03:26:07 +02:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.95.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.95.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.95.1" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.95.1" }
|
2023-02-24 16:54:42 +01:00
|
|
|
|
2024-03-24 00:46:02 +01:00
|
|
|
itertools = { workspace = true }
|
2024-06-27 00:48:45 +02:00
|
|
|
shadow-rs = { version = "0.29", default-features = false }
|
2023-02-24 16:54:42 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-06-27 00:48:45 +02:00
|
|
|
shadow-rs = { version = "0.29", 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
|
|
|
trash-support = []
|
|
|
|
sqlite = []
|
|
|
|
static-link-openssl = []
|
2024-06-25 20:29:47 +02:00
|
|
|
system-clipboard = []
|