Kon/Cargo.toml
toast 4ff1025149
All checks were successful
Build and push container image / build (push) Successful in 11m5s
Cleanup the leftover code from previous iteration
2024-03-23 10:41:29 +11:00

32 lines
562 B
TOML

[package]
name = "kon"
version = "0.2.4"
rust-version = "1.75"
edition = "2021"
[dependencies]
cargo_toml = "0.19.2"
gamedig = "0.5.0"
once_cell = "1.19.0"
poise = "0.6.1"
reqwest = { version = "0.12.1", features = ["json"] }
serde = "1.0.197"
serde_json = "1.0.114"
sysinfo = "0.30.7"
tokio = { version = "1.36.0", features = ["macros", "signal", "rt-multi-thread"] }
tokio-postgres = "0.7.10"
uptime_lib = "0.3.0"
[[bin]]
name = "kon"
path = "src/main.rs"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 2
debug = false
strip = true