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"
|
2024-04-12 15:00:43 +02:00
|
|
|
version = "0.92.3"
|
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]
|
2024-03-24 00:46:02 +01:00
|
|
|
lscolors = { workspace = true, default-features = false, features = ["nu-ansi-term"] }
|
2024-03-07 23:40:31 +01:00
|
|
|
log = { workspace = true }
|
2024-03-24 00:46:02 +01:00
|
|
|
num-format = { workspace = true }
|
|
|
|
strip-ansi-escapes = { workspace = true }
|
2023-05-26 17:32:48 +02:00
|
|
|
sys-locale = "0.3"
|
2023-11-08 23:58:54 +01:00
|
|
|
unicase = "2.7.0"
|
2022-03-16 23:21:06 +01:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-05-26 17:32:48 +02:00
|
|
|
crossterm_winapi = "0.9"
|
2024-04-06 15:56:46 +02:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
nix = { workspace = true, default-features = false, features = ["user"] }
|