-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
51 lines (46 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "libsystemd"
version = "0.7.0"
authors = ["Luca Bruno <[email protected]>", "Sebastian Wiesner <[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 = "2021"
rust-version = "1.65"
[dependencies]
hmac = "^0.12"
libc = "^0.2"
log = "^0.4"
nix = { version = "^0.27", default-features = false, features = ["dir", "fs", "socket", "process", "uio"] }
nom = "7"
serde = { version = "^1.0.91", features = ["derive"] }
sha2 = "^0.10"
thiserror = "^1.0"
uuid = { version = "^1.0", features = ["serde"] }
once_cell = "^1.8"
[dev-dependencies]
quickcheck = "^1.0"
serde_json = "^1.0"
rand = "^0.8"
pretty_assertions = "^1.0"
[[test]]
name = "connected_to_journal"
harness = false
[[test]]
name = "persistent_state"
harness = false
[package.metadata.release]
publish = false
push = false
pre-release-commit-message = "cargo: libsystemd release {{version}}"
sign-commit = true
sign-tag = true
tag-message = "libsystemd {{version}}"