-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.15 KB
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
[package]
description = "Gossip KV Library"
name = "gossip_kv"
version = "0.1.0"
publish = false
edition = "2024"
[dependencies]
clap = { version = "4.5.4", features = ["derive", "env"] }
config = "0.15.0"
governor = "0.7.0"
hostname = "0.4.0"
dfir_rs = { version = "0.14.0" }
lattices = { version = "0.6.1" }
lazy_static = "1.5.0"
# The specific set of features for Notify are picked to disable the default cross-beam channels (cause problems with
# tokio) and use std channels. See docs for more information: https://docs.rs/notify/6.1.1/notify/
notify = { version = "6.1.1", default-features = false, features = ["macos_kqueue"] }
prometheus = "0.13.4"
rand = "0.8.5"
serde = "1.0.203"
serde_json = "1.0.117"
shlex = "1.3.0"
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features = ["env-filter"]}
uuid = { version = "1.9.1", features = ["v4"] }
warp = "0.3.7"
[[bin]]
name = "gossip_server"
path = "server/main.rs"
[[bin]]
name = "load_test_server"
path = "load_test_server/server.rs"
[[bin]]
name = "gossip_cli"
path = "cli/main.rs"
[lib]
name = "gossip_kv"
path = "kv/lib.rs"