forked from velopack/filelocksmith-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cargo.toml
31 lines (26 loc) · 819 Bytes
/
cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "filelocksmith"
version = "0.1.3"
edition = "2021"
license = "MIT"
authors = ["Caelan Sayler <git@caesay.com>"]
description = "Detect what processes are locking a file or folder on Windows"
readme = "README.md"
homepage = "https://github.com/velopack/filelocksmith-rs"
repository = "https://github.com/velopack/filelocksmith-rs"
documentation = "https://docs.rs/filelocksmith"
keywords = ["windows", "locksmith", "powertoys", "find", "locking"]
categories = ["development-tools"]
exclude = [
"PowerToys/*",
"!PowerToys/src/modules/FileLocksmith/FileLocksmithLibInterop/**/*"
]
[features]
private-docs-rs = []
[package.metadata.docs.rs]
features = ["private-docs-rs"] # workaround to skip C++ build on docs.rs
[lib]
name = "filelocksmith"
path = "src/lib.rs"
[build-dependencies]
cc = "1.1"