2023-06-01 19:46:16 +02:00
|
|
|
[package]
|
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "Nushell's extra commands that are not part of the 1.0 api standard."
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-cmd-extra"
|
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-extra"
|
2023-06-07 15:06:42 +02:00
|
|
|
version = "0.81.1"
|
2023-06-01 19:46:16 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-07 15:06:42 +02:00
|
|
|
nu-engine = { path = "../nu-engine", version = "0.81.1" }
|
|
|
|
nu-parser = { path = "../nu-parser", version = "0.81.1" }
|
|
|
|
nu-protocol = { path = "../nu-protocol", version = "0.81.1" }
|
2023-06-01 19:46:16 +02:00
|
|
|
|
|
|
|
# Potential dependencies for extras
|
|
|
|
num-traits = "0.2"
|
2023-06-10 18:41:58 +02:00
|
|
|
ahash = "0.8.3"
|
2023-06-01 19:46:16 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
extra = ["default"]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-14 23:12:55 +02:00
|
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.81.1" }
|
2023-06-07 15:06:42 +02:00
|
|
|
nu-test-support = { path = "../nu-test-support", version = "0.81.1" }
|