2021-06-20 01:07:26 +02:00
|
|
|
[package]
|
2022-03-13 19:30:27 +01:00
|
|
|
authors = ["The Nushell Project Developers"]
|
2021-08-28 14:59:09 +02:00
|
|
|
description = "Path handling library for Nushell"
|
2022-08-14 14:21:20 +02:00
|
|
|
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path"
|
2022-01-20 14:13:45 +01:00
|
|
|
edition = "2021"
|
2021-10-01 07:11:49 +02: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 00:46:02 +01:00
|
|
|
dirs-next = { workspace = true }
|
2022-10-29 21:19:12 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-03-24 00:46:02 +01:00
|
|
|
omnipath = { workspace = true }
|
2022-04-25 00:12:57 +02:00
|
|
|
|
2023-08-28 08:53:25 +02:00
|
|
|
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android")))'.dependencies]
|
2024-03-24 00:46:02 +01:00
|
|
|
pwd = { workspace = true }
|