-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 786 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
[package]
name = "central"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
[dependencies]
beam-lib = { workspace = true }
clap = { workspace = true }
tokio = { workspace = true, features = ["signal"] }
once_cell = { workspace = true }
shared = { workspace = true }
serde = { workspace = true }
futures = { workspace = true }
serde_json = "1"
rand = "0.10"
reqwest = { version = "0.12", default_features = false, features = ["default-tls"] }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
urlencoding = "2.1.3"
icinga-client = { git = "https://github.com/samply/icinga-client.git", tag = "v0.1.0", version = "0.1.0" }
toml = "0.9.2"
time = { version = "0.3.41", features = ["serde", "parsing", "macros", "formatting"] }