nushell/crates/nu-path/Cargo.toml
pegasus.cadence@gmail.com a84a859755 PWD per drive
2024-11-19 04:55:15 -08:00

27 lines
645 B
TOML

[package]
authors = ["The Nushell Project Developers"]
description = "Path handling library for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path"
edition = "2021"
license = "MIT"
name = "nu-path"
version = "0.100.1"
exclude = ["/fuzz"]
[lib]
bench = false
[dependencies]
dirs = { workspace = true }
cfg-if = "1.0.0"
[target.'cfg(windows)'.dependencies]
omnipath = { workspace = true }
once_cell = "1.20.1"
winapi = { version = "0.3.9", features = ["fileapi"] }
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android")))'.dependencies]
pwd = { workspace = true }
[lints]
workspace = true