A cross-platform Rust library for resolving XDG and platform-specific directories with proper fallbacks.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove libc dependency from Cargo.toml

The libc dependency was unused and has been removed to streamline
the crate's dependency tree. This reduces maintenance overhead
and eliminates unnecessary inclusions.

-12
-9
Cargo.lock
··· 5 5 [[package]] 6 6 name = "dir_spec" 7 7 version = "0.1.0" 8 - dependencies = [ 9 - "libc", 10 - ] 11 - 12 - [[package]] 13 - name = "libc" 14 - version = "1.0.0-alpha.1" 15 - source = "registry+https://github.com/rust-lang/crates.io-index" 16 - checksum = "7222002e5385b4d9327755661e3847c970e8fbf9dea6da8c57f16e8cfbff53a8"
-3
Cargo.toml
··· 11 11 keywords = ["xdg", "directories", "cross-platform", "filesystem", "config"] 12 12 categories = ["filesystem", "os", "config"] 13 13 14 - [dependencies] 15 - libc = "1.0.0-alpha.1" 16 - 17 14 [lints.clippy] 18 15 complexity = { level = "warn", priority = -1 } 19 16 correctness = { level = "warn", priority = -1 }