sapling/eden/scm/lib/util/Cargo.toml
Jun Wu 570dbef1db util: add PathLock
Summary: RAII lock on a filesystem path.

Reviewed By: DurhamG

Differential Revision: D22226017

fbshipit-source-id: 4e26358bf0b6d4b2440fb77058032dbde8b6d02c
2020-06-25 13:56:12 -07:00

20 lines
346 B
TOML

[package]
name = "util"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0.20"
dirs = "2.0.2"
fs2 = "0.4"
libc = "0.2"
rand = "0.7"
shellexpand = "1.0.0"
tempfile = "3.0.4"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "winnt", "handleapi", "winbase"] }
[dev-dependencies]
memmap = "0.7"