| [package] |
| name = "fd-lock" |
| version = "3.0.10" |
| license = "MIT OR Apache-2.0" |
| repository = "https://github.com/yoshuawuyts/fd-lock" |
| documentation = "https://docs.rs/fd-lock" |
| description = "Advisory cross-platform lock on a file using a file descriptor to it." |
| keywords = ["file", "fd", "lock", "windows", "unix"] |
| categories = ["filesystem", "os", "os::macos-apis", "os::unix-apis", "os::windows-apis"] |
| authors = ["Yoshua Wuyts <[email protected]>"] |
| readme = "README.md" |
| edition = "2018" |
| |
| [dependencies] |
| cfg-if = "1.0.0" |
| |
| [target.'cfg(windows)'.dependencies.windows-sys] |
| version = "0.45.0" |
| features = [ |
| "Win32_Foundation", |
| "Win32_Storage_FileSystem", |
| "Win32_System_IO", |
| ] |
| |
| [target.'cfg(unix)'.dependencies] |
| rustix = { version = "0.36.0", features = ["fs"] } |
| |
| [dev-dependencies] |
| tempfile = "3.0.8" |