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"
|
2023-07-30 22:16:57 +02:00
|
|
|
version = "0.83.2"
|
2023-02-24 16:54:42 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-30 22:16:57 +02:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.83.2" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.83.2" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.83.2" }
|
|
|
|
nu-utils = { path = "../nu-utils", version = "0.83.2" }
|
2023-07-24 13:16:18 +02:00
|
|
|
nu-ansi-term = "0.49.0"
|
2023-02-24 16:54:42 +01:00
|
|
|
|
2023-05-26 17:32:48 +02:00
|
|
|
fancy-regex = "0.11"
|
|
|
|
itertools = "0.10"
|
2023-06-19 14:40:17 +02:00
|
|
|
shadow-rs = { version = "0.23", default-features = false }
|
2023-02-24 16:54:42 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-06-19 14:40:17 +02:00
|
|
|
shadow-rs = { version = "0.23", 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 = []
|
|
|
|
dataframe = []
|
|
|
|
static-link-openssl = []
|
|
|
|
wasi = []
|
2023-06-01 22:10:39 +02:00
|
|
|
extra = []
|