Kon/Cargo.toml

33 lines
626 B
TOML
Raw Normal View History

2023-12-07 22:01:13 -05:00
[package]
name = "kon"
2024-03-25 21:28:13 -04:00
version = "0.2.6"
rust-version = "1.75"
2023-12-07 22:01:13 -05:00
edition = "2021"
[dependencies]
cargo_toml = "0.19.2"
gamedig = "0.5.0"
2024-01-01 22:42:40 -05:00
once_cell = "1.19.0"
poise = "0.6.1"
reqwest = { version = "0.12.2", features = ["json"] }
serde = "1.0.197"
serde_json = "1.0.114"
sysinfo = "0.30.7"
2024-03-25 21:28:13 -04:00
tokenservice-client = { version = "0.1.0", registry = "gitea" }
tokio = { version = "1.36.0", features = ["macros", "signal", "rt-multi-thread"] }
2024-01-30 07:17:59 -05:00
tokio-postgres = "0.7.10"
2024-01-06 22:38:37 -05:00
uptime_lib = "0.3.0"
2023-12-07 22:01:13 -05:00
[[bin]]
name = "kon"
path = "src/main.rs"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 2
2023-12-07 22:01:13 -05:00
debug = false
strip = true