-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.13 KB
/
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
[package]
name = "speculare-alerts"
version = "0.1.1"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sproot = { git = "https://github.com/speculare-cloud/sproot" }
base64 = "0.22"
bastion = "0.4"
bastion-executor = { version = "0.4", features = ["tokio-runtime"] }
clap = { version = "4.2", features = ["derive"] }
clap-verbosity-flag = "2.0"
chrono = { version = "0.4", features = ["serde"] }
config = { version = "0.14", features = ["toml"] }
diesel = { version = "2.0", features = ["postgres", "r2d2", "chrono"] }
evalexpr = "11.3"
futures = "0.3"
futures-util = "0.3"
http = "1.1"
lettre = { version = "0.11", features = ["rustls-tls"] }
log = "0.4"
once_cell = "1.14"
rand = "0.8"
regex = "1.6"
r2d2 = "0.8"
sailfish = "0.8"
serde = { version = "1.0", features = ["derive"] }
simd-json = "0.14"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-native-roots"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = true
opt-level = 3
codegen-units = 1