forked from lucab/libsystemd-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 994 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
32
33
34
35
36
[package]
name = "libsystemd"
version = "0.2.1-alpha.0"
authors = ["Luca Bruno <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/lucab/libsystemd-rs"
documentation = "https://docs.rs/libsystemd"
description = "A pure-Rust client library to interact with systemd"
keywords = ["systemd", "linux"]
categories = ["api-bindings", "os::unix-apis"]
readme = "README.md"
exclude = [
".gitignore",
".travis.yml",
]
edition = "2018"
[dependencies]
error-chain = { version = "^0.12.1", default-features = false }
hmac = "0.7"
libc = "0.2"
nix = "0.17"
serde = { version = "^1.0.91", features = ["derive"] }
sha2 = "0.8"
uuid = { version = "^0.8.1", features = ["serde"] }
[dev-dependencies]
quickcheck = "0.9"
[package.metadata.release]
sign-commit = true
disable-publish = true
disable-push = true
pre-release-commit-message = "cargo: libsystemd release {{version}}"
post-release-commit-message = "cargo: development version bump"
tag-message = "libsystemd {{version}}"