2022-03-16 23:21:06 +01:00
|
|
|
[package]
|
|
|
|
authors = ["The Nushell Project Developers"]
|
|
|
|
description = "Nushell utility functions"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
name = "nu-utils"
|
2023-01-24 21:28:59 +01:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-utils"
|
2023-04-05 03:36:10 +02:00
|
|
|
version = "0.78.1"
|
2022-03-16 23:21:06 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
|
|
name = "utils"
|
|
|
|
path = "src/main.rs"
|
2023-02-12 23:22:00 +01:00
|
|
|
bench = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2022-03-16 23:21:06 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-24 21:28:59 +01:00
|
|
|
log = "0.4"
|
2022-11-01 00:27:20 +01:00
|
|
|
lscolors = { version = "0.12.0", features = ["crossterm"], default-features = false }
|
2022-10-10 13:25:57 +02:00
|
|
|
num-format = { version = "0.4.3" }
|
2022-11-04 19:49:45 +01:00
|
|
|
strip-ansi-escapes = "0.1.1"
|
2023-01-24 21:28:59 +01:00
|
|
|
sys-locale = "0.2.1"
|
2022-03-16 23:21:06 +01:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
crossterm_winapi = "0.9.0"
|