mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
d3895d71db
# Description - enables `bits` commands to operate on binary data, where both inputs are binary and can vary in length - adds an `--endian` flag to `bits and`, `or`, `xor` for specifying endianness (for binary values of different lengths) # User-Facing Changes - `bits` commands will no longer error for non-int inputs - the default for `--number-bytes` is now `auto` (infer int size; changed from 8) # Tests + Formatting > addendum: first PR, please inform if any changes are needed
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
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.90.2"
|
|
|
|
# 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.90.2" }
|
|
nu-parser = { path = "../nu-parser", version = "0.90.2" }
|
|
nu-protocol = { path = "../nu-protocol", version = "0.90.2" }
|
|
nu-cmd-base = { path = "../nu-cmd-base", version = "0.90.2" }
|
|
nu-utils = { path = "../nu-utils", version = "0.90.2" }
|
|
|
|
# Potential dependencies for extras
|
|
heck = "0.4.1"
|
|
num-traits = "0.2"
|
|
nu-ansi-term = "0.50.0"
|
|
fancy-regex = "0.13.0"
|
|
rust-embed = "8.2.0"
|
|
serde = "1.0.164"
|
|
nu-pretty-hex = { version = "0.90.2", path = "../nu-pretty-hex" }
|
|
nu-json = { version = "0.90.2", path = "../nu-json" }
|
|
serde_urlencoded = "0.7.1"
|
|
v_htmlescape = "0.15.0"
|
|
itertools = "0.12"
|
|
|
|
[features]
|
|
extra = ["default"]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.90.2" }
|
|
nu-command = { path = "../nu-command", version = "0.90.2" }
|
|
nu-test-support = { path = "../nu-test-support", version = "0.90.2" }
|