-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (25 loc) · 888 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
[package]
name = "corroded_monitor"
version = "1.0.2"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.81"
tokio = { version = "1.18.2", default-features = false, features = ["rt", "rt-multi-thread", "time", "sync"] }
iced = { version = "0.10.0", features = ["tokio"] }
dark-light = "1.0.0"
plotters = { version = "0.3.0", default-features = false, features = ["line_series", "datetime", "deprecated_items", "area_series"]}
plotters-iced = "0.9.0"
plotters-backend = "0.3.0"
image = { version = "0.24.2", default-features = false, features = ["ico"] }
serde = { version = "1.0.160", features = ["derive"] }
regex = "1.8.1"
[build-dependencies]
embed-resource = "2.1.1"
bindgen = "0.66.1"
winres = "0.1.12"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1