summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 5472a16c212ffe84b8ac5ee7759fc1df5b39e62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "pidlock"
version = "0.1.0"
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"

travis-ci = { repository = "rockstar/pidlock" }