-
Notifications
You must be signed in to change notification settings - Fork 43
/
Cargo.toml
50 lines (41 loc) · 1.12 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
[package]
name = "systemd"
version = "0.10.0"
authors = ["Cody P Schafer <dev@codyps.com>"]
license = "LGPL-2.1-or-later WITH GCC-exception-2.0"
description = "A rust interface to libsystemd/libelogind provided APIs"
repository = "https://github.com/codyps/rust-systemd"
documentation = "https://docs.rs/crate/systemd"
include = ["Cargo.toml", "src/**/*.rs", "COPYING", "README.md"]
readme = "README.md"
edition = "2018"
[features]
default = ["bus", "journal"]
bus = ["libsystemd-sys/bus"]
journal = ["libsystemd-sys/journal"]
systemd_v245 = ["libsystemd-sys/systemd_v245"]
unstable-doc-cfg = []
[dependencies]
log = "~0.4"
libc = "~0.2"
memchr = "2"
utf8-cstr = "~0.1"
cstr-argument = "~0.1"
foreign-types = "0.5.0"
serde = { version = "1", default-features = false, optional = true }
#enumflags2 = "^0.5"
#enumflags2_derive = "^0.5"
[dependencies.libsystemd-sys]
path = "libsystemd-sys"
version = "^0.9"
[dev-dependencies]
version-sync = "0.9.2"
doc-comment = "0.3"
[profile.release]
debug = true
[package.metadata.docs.rs]
all-features = true
[workspace]
members = ["libsystemd-sys"]
[package.metadata.release]
tag-prefix = "systemd-"