[package]
authors = ["Robert Collins <robertc@robertcollins.net>"]
categories = ["filesystem", "os"]
description = "Implementation of 'at' functions for various platforms"
edition = "2021"
license = "Apache-2.0"
name = "fs_at"
readme = "README.md"
repository = "https://github.com/rbtcollins/fs_at.git"
rust-version = "1.71.0"
version = "0.2.1"
[features]
default = []
log = ["dep:log"]
"workaround-procmon" = ["dep:once_cell"]
[dependencies]
cfg-if = "1.0.0"
cvt = "0.1.1"
log = { version = "0.4.21", optional = true }
[dev-dependencies]
env_logger = "0.11.3"
fs-set-times = "0.20.1"
rayon = "1.10.0"
tempfile = "3.10.1"
test-log = "0.2.16"
[target.'cfg(not(windows))'.dependencies]
libc = "0.2.153"
nix = { version = "0.29.0", default-features = false, features = ["dir"] }
[target.'cfg(windows)'.dependencies]
aligned = "0.4.1"
once_cell = { optional = true, version = "1.19.0" }
[target.'cfg(windows)'.dependencies.windows-sys]
features = [
"Wdk_Foundation",
"Wdk_Storage_FileSystem",
"Wdk_System_SystemServices",
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Ioctl",
"Win32_System_Kernel",
"Win32_System_SystemServices",
"Win32_System_WindowsProgramming",
]
version = "0.52.0"