mirror of
https://github.com/nushell/nushell
synced 2024-12-28 14:03:09 +00:00
356e05177c
I wanted to get the infrastructure in place for starters for our *nu-cmd-extra* crate... The plan is to put inside here the following commands... * bits * bytes * math I thought it would be easier to do one at a time as well as get the nu-cmd-extra crate out there on crates.io for this upcoming release... Once this lands the infrastructure will be in place to move over the other noted commands for now... And then add other stuff we do NOT want to be in 1.0.
29 lines
859 B
TOML
29 lines
859 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.80.1"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.80.1" }
|
|
nu-engine = { path = "../nu-engine", version = "0.80.1" }
|
|
nu-parser = { path = "../nu-parser", version = "0.80.1" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
|
|
|
|
# Potential dependencies for extras
|
|
num-traits = "0.2"
|
|
|
|
[features]
|
|
extra = ["default"]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
nu-test-support = { path = "../nu-test-support", version = "0.80.1" }
|