-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
31 lines (25 loc) · 889 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 = "named-lock"
version = "0.4.1"
authors = ["oblique <psyberbits@gmail.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "Cross-platform implementation of cross-process named locks"
categories = ["os"]
keywords = ["process", "inter-process", "cross-process", "flock", "CreateMutexW"]
repository = "https://github.com/oblique/named-lock"
[dependencies]
once_cell = "1.14.0"
parking_lot = { version = "0.12.1", features = ["arc_lock", "send_guard"] }
thiserror = "1.0.35"
[target.'cfg(unix)'.dependencies]
libc = "0.2.132"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.53", features = ["Win32_Foundation", "Win32_Security", "Win32_System_Threading"] }
[dev-dependencies]
static_assertions = "1.1.0"
uuid = { version = "1.1.2", features = ["v4"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]