[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