mirror of
https://github.com/nushell/nushell.git
synced 2024-12-26 08:59:12 +01:00
088e6dffbe
# Description Marks development or hotfix
32 lines
977 B
TOML
32 lines
977 B
TOML
[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.1"
|
|
|
|
# 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.1" }
|
|
nu-parser = { path = "../nu-parser", version = "0.82.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.82.1" }
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.82.1" }
|
|
nu-utils = { path = "../nu-utils", version = "0.82.1" }
|
|
|
|
# Potential dependencies for extras
|
|
num-traits = "0.2"
|
|
|
|
[features]
|
|
extra = ["default"]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.82.1" }
|
|
nu-test-support = { path = "../nu-test-support", version = "0.82.1" }
|