-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1008 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
[package]
name = "kostal-plenticore-rs"
version = "0.2.0"
edition = "2021"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3 # Optimize for speed.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
debug = false
overflow-checks = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
influx_db_client = {version = "0.5.1", default-features = false, features = ["rustls-tls"]}
config = "0.15"
serde = { version = "1.0.140", features = ["derive"] }
serde_json = "1.0.87"
reqwest = { version = "0.12.11", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1.39.2", features =[
"macros",
"rt-multi-thread",
"signal",
] }
rocket = "0.5.1"
base64 = "0.22"
rand = "0.8.5"
ring = "0.17"
aes-gcm = "0.10.1"
const_format = "0.2"
log = "0.4"
env_logger = "0.11"