forked from oblique/named-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 738 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 738 Bytes
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
[package]
name = "named-lock"
version = "0.1.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]
thiserror = "1"
once_cell = "1.3"
parking_lot = "0.10"
[target.'cfg(unix)'.dependencies]
libc = "0.2.66"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["handleapi", "synchapi", "winbase", "winnt", "winerror"] }
widestring = "0.4"
[dev-dependencies]
matches = "0.1"
uuid = { version = "0.8", features = ["v4"] }