[package]
edition = "2021"
name = "filelocksmith"
version = "2.0.0"
authors = ["Caelan Sayler <git@caesay.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Detect what processes are locking a file or folder on Windows"
homepage = "https://github.com/velopack/filelocksmith-rs"
documentation = "https://docs.rs/filelocksmith"
readme = "README.md"
keywords = [
"windows",
"locksmith",
"powertoys",
"find",
"locking",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/velopack/filelocksmith-rs"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[lib]
name = "filelocksmith"
path = "src/lib.rs"
[[example]]
name = "runall"
path = "examples/runall.rs"
[[test]]
name = "ci_test"
path = "tests/ci_test.rs"
harness = false
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_LibraryLoader",
]