Kon/Cargo.toml
toast 3da094eaa6
All checks were successful
Build and push container image / build (push) Successful in 10m38s
Add error handler and finally fix the query
2024-03-11 10:04:12 +11:00

33 lines
584 B
TOML

[package]
name = "kon"
version = "0.1.16"
rust-version = "1.74"
edition = "2021"
[dependencies]
cargo_toml = "0.19.2"
gamedig = "0.4.1"
once_cell = "1.19.0"
poise = "0.6.1"
reqwest = { version = "0.11.25", features = ["json"] }
serde = "1.0.197"
serde_json = "1.0.114"
serenity = "0.12.1"
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 = 3
debug = false
strip = true