-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (31 loc) · 989 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
37
38
39
40
41
42
43
44
45
46
[package]
name = "ekke_systemd"
version = "0.1.0"
authors = [ "Naja Melan <[email protected]>" ]
edition = "2018"
[[bin]]
path = "src/main.rs"
name = "ekke_systemd"
[lib]
name = "libsystemd"
path = "src/libsystemd/lib.rs"
[dependencies]
ekke_core = { path = "../../ekke_core" }
ekke_io = { path = "../../ekke_io" }
actix = "0.7.9"
clap = "2.32.0"
failure = "0.1.5"
typename = "0.1.0"
serde = "~1.0.87"
serde_derive = "~1.0.87"
serde_cbor = "0.9.0"
slog = { version = "2.4.1", features = ["max_level_trace", "release_max_level_warn"] }
slog-async = "2.3.0"
slog-term = "2.4.0"
slog_unwraps = "0.1.4"
tokio = { version = "0.1.15", features = ["async-await-preview"] }
tokio-async-await = "0.1.5"
tokio-serde-cbor = "0.3.1"
tokio-uds = "0.2.5"
[dependencies.futures-util-preview]
version = "0.3.0-alpha.13"