nushell/crates/nu-cmd-extra/Cargo.toml

32 lines
977 B
TOML
Raw Normal View History

[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"
version = "0.82.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
bench = false
[dependencies]
nu-engine = { path = "../nu-engine", version = "0.82.0" }
nu-parser = { path = "../nu-parser", version = "0.82.0" }
nu-protocol = { path = "../nu-protocol", version = "0.82.0" }
nu-cmd-base = { path = "../nu-cmd-base", version = "0.82.0" }
nu-utils = { path = "../nu-utils", version = "0.82.0" }
# Potential dependencies for extras
num-traits = "0.2"
[features]
extra = ["default"]
default = []
[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.82.0" }
nu-test-support = { path = "../nu-test-support", version = "0.82.0" }