1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-31 03:08:14 +02:00
nushell/crates/nu-utils/Cargo.toml
Stefan Holderbach 1d95861a09
Remove inadvertent dep on original ansi_term ()
Is default feature in `lscolors`. Not needed for function as we use
crossterm backend in this case.
2022-11-01 12:27:20 +13:00

22 lines
608 B
TOML

[package]
authors = ["The Nushell Project Developers"]
description = "Nushell utility functions"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-utils"
edition = "2021"
license = "MIT"
name = "nu-utils"
version = "0.70.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "utils"
path = "src/main.rs"
[dependencies]
lscolors = { version = "0.12.0", features = ["crossterm"], default-features = false }
num-format = { version = "0.4.3" }
sys-locale = "0.2.1"
[target.'cfg(windows)'.dependencies]
crossterm_winapi = "0.9.0"