summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c8267b80cdd1eadf19bad331e790ba631bba8192 (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
[package]
name = "pidlock"
version = "0.1.1"
authors = ["Paul Hummer <paul@eventuallyanyway.com>"]
license = "MIT"
description = "A library for using pidfiles as resource locks"
repository = "https://github.com/rockstar/pidlock"
keywords = ["pidfile", "file", "filelock", "server", "lock"]
categories = ["filesystem"]
readme = "README.md"
include = [
    "src/*.rs",
    "Cargo.toml",
    "README.md",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]


[dependencies]
libc = "0.2.40"

[badges]
travis-ci = { repository = "rockstar/pidlock" }