blob: 797133a6efaed7dce5dcc5e4d3410e433f753ecd (
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.3"
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"]
|