-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1017 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
[package]
authors = ["Evgenii Lepikhin <[email protected]>"]
edition = "2021"
name = "ala-archa-http-backend"
version = "0.1.11"
[profile.release]
# Release compile-time optimizations
# https://github.com/johnthagen/min-sized-rust
lto = true
strip = true
opt-level = "z"
codegen-units = 1
[profile.fastdev]
inherits = "dev"
opt-level = 0
debug = false
[dependencies]
anyhow = "1.0"
clap = {version = "4.0", features = ["derive"]}
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
serde_yaml = "0.9"
slog = "2.7"
slog-envlogger = "2.2"
slog-scope = "4.4"
slog-syslog = { path = "custom-vendored/slog-syslog" }
actix-web = "4.3"
derive_more = "0.99"
surge-ping = "0.7"
tokio = { version = "1.25", features = ["process"] }
dhcpd_parser = { git = "https://github.com/ala-archa/dhcpd-parser" }
prometheus_exporter_base = "1.4"
tokio-cron-scheduler = "0.13.0"
reqwest = { version = "0.12.9", features = ["json"] }
chrono = { version = "0.4.38", features = ["serde"] }
humantime-serde = "1.1.1"