summaryrefslogtreecommitdiff
path: root/crates/fslock-guard/Cargo.toml
blob: 56c85bc71ce8865d548d8139d1cad43d960eaf72 (plain)
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
[package]
name = "fslock-guard"
version = "0.1.2"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Wrapper around a lockfile with unlock-on-drop semantics"
keywords = ["fs", "file", "lock"]
categories = ["filesystem"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
rust-version = "1.70"

[features]
default = []
full = []

[dependencies]
fslock = { version = "0.2.0", package = "fslock-arti-fork" }
thiserror = "1"

[dev-dependencies]
test-temp-dir = { version = "0.2.1", path = "../test-temp-dir" }

[target.'cfg(windows)'.dependencies.winapi]
version = "^0.3.8"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]