-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 783 Bytes
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
[package]
name = "kompact-examples"
version = "0.11.0"
authors = ["Lars Kroll <lkroll@kth.se>"]
edition = "2018"
[features]
type_erasure = ["kompact/type_erasure"]
silent_logging = ["kompact/silent_logging"]
[dependencies]
slog = "2"
slog-async = "2"
slog-term = "2"
serde = { version = "1", features = ["derive"] }
trust-dns-proto = { version = "0.19", default-features = false }
async-std-resolver = "0.19"
dialoguer = "0.10"
lru = "0.16"
uuid = { version = "1", features = ["v4", "serde"] }
rand = { version = "0.8", features = ["small_rng"] }
[dependencies.kompact]
path = "../../core/"
default-features = true
# features = ["silent_logging", "low_latency"]
# features = ["silent_logging", "ser_id_8"]
[[bin]]
name = "dynamic_components"
required-features = ["type_erasure"]