2021-06-20 01:07:26 +02:00
|
|
|
[package]
|
2022-03-13 11:30:27 -07:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2021-08-28 15:59:09 +03:00
|
|
|
description = "Path handling library for Nushell"
|
2022-08-14 15:21:20 +03:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path"
|
2022-01-20 05:13:45 -08:00
|
|
|
edition = "2021"
|
2021-10-01 18:11:49 +13:00
|
|
|
license = "MIT"
|
|
|
|
name = "nu-path"
|
2024-04-12 15:00:43 +02:00
|
|
|
version = "0.92.3"
|
2023-09-16 22:32:53 +02:00
|
|
|
exclude = ["/fuzz"]
|
2021-06-20 01:07:26 +02:00
|
|
|
|
2023-02-12 23:22:00 +01:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-06-20 01:07:26 +02:00
|
|
|
[dependencies]
|
2024-03-24 10:46:02 +11:00
|
|
|
dirs-next = { workspace = true }
|
2022-10-29 21:19:12 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-03-24 10:46:02 +11:00
|
|
|
omnipath = { workspace = true }
|
2022-04-25 06:12:57 +08:00
|
|
|
|
2023-08-28 02:53:25 -04:00
|
|
|
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android")))'.dependencies]
|
2024-03-24 10:46:02 +11:00
|
|
|
pwd = { workspace = true }
|