Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 8m58s
Multi-Platform Release Build / build (true, build-essential gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Failing after 8m48s
Multi-Platform Release Build / build (true, linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 15m55s
Multi-Platform Release Build / create-release (push) Has been skipped
49 lines
923 B
TOML
49 lines
923 B
TOML
[package]
|
|
name = "uptime-kuma-dashboard"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.54", features = ["derive", "env"] }
|
|
reqwest = { version = "0.13.1", default-features = false, features = [
|
|
"blocking",
|
|
"json",
|
|
"rustls",
|
|
] }
|
|
anyhow = "1.0"
|
|
fluent-templates = "0.13.2"
|
|
unic-langid = "0.9.6"
|
|
sys-locale = "0.3.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.148"
|
|
once_cell = "1.19"
|
|
url = "2.5.7"
|
|
ratatui = "0.30.0"
|
|
crossterm = "0.29.0"
|
|
chrono = "0.4.42"
|
|
rayon = "1.11.0"
|
|
rustls = { version = "0.23.35", default-features = false, features = ["ring"] }
|
|
|
|
[features]
|
|
default = []
|
|
production = []
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
debug = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|
|
debug = false
|
|
|
|
[profile.release-min]
|
|
inherits = "release"
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|