[package]
edition = "2024"
rust-version = "1.85"
name = "which-fs"
version = "0.1.1"
authors = ["Manuel Quarneti <mq1@ik.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Give me a path, I'll tell you the filesystem it's on"
homepage = "https://github.com/mq1/which-fs-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mq1/which-fs-rs"
[lib]
name = "which_fs"
path = "src/lib.rs"
[target."cfg(unix)".dependencies.rustix]
version = "1"
features = ["fs"]
[target."cfg(windows)".dependencies.windows]
version = ">=0.58, <=0.62"
features = ["Win32_Storage_FileSystem"]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
rust_2018_idioms = "deny"