[package] name = "relative-path-utils" version = "0.2.0" authors = ["John-John Tedro "] edition = "2021" rust-version = "1.66" description = "Portable, relative paths for Rust." documentation = "https://docs.rs/relative-path" readme = "README.md" homepage = "https://github.com/udoprog/relative-path" repository = "https://github.com/udoprog/relative-path" license = "MIT OR Apache-2.0" keywords = ["path"] categories = ["filesystem"] [features] root = ["dep:windows-sys", "dep:libc", "dep:errno"] [dependencies] relative-path = { path = "../relative-path", version = "1.9.2" } [target.'cfg(windows)'.dependencies.windows-sys] version = "0.52.0" optional = true features = [ "Wdk_Foundation", "Wdk_Storage_FileSystem", "Wdk_System_SystemServices", "Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_WindowsProgramming", "Win32_Security", "Win32_System_Kernel", ] [target.'cfg(unix)'.dependencies] libc = { version = "0.2.151", optional = true } errno = { version = "0.3.8", optional = true } [dev-dependencies] anyhow = "1.0.76" serde = { version = "1.0.160", features = ["derive"] } [package.metadata.docs.rs] all-features = true