Kon/Cargo.toml

40 lines
725 B
TOML
Raw Normal View History

2023-12-07 22:01:13 -05:00
[package]
name = "kon"
2024-08-01 23:36:42 -04:00
version = "0.3.8"
2023-12-07 22:01:13 -05:00
edition = "2021"
[dependencies]
2024-07-19 19:56:58 -04:00
bb8 = "0.8.5"
bb8-postgres = "0.8.1"
bb8-redis = "0.16.0"
2024-07-19 19:56:58 -04:00
cargo_toml = "0.20.4"
2024-07-27 19:39:56 -04:00
feed-rs = "2.1.0"
2024-01-01 22:42:40 -05:00
once_cell = "1.19.0"
2024-07-19 19:56:58 -04:00
os_info = "3.8.2"
poise = "0.6.1"
2024-07-22 02:37:19 -04:00
regex = "1.10.5"
2024-07-19 19:56:58 -04:00
reqwest = { version = "0.12.5", features = ["json"] }
serde = "1.0.204"
2024-08-01 23:36:42 -04:00
serde_json = "1.0.122"
sysinfo = "0.31.2"
2024-07-30 05:00:31 -04:00
tokenservice-client = { version = "0.3.3", registry = "gitea" }
2024-07-27 19:39:56 -04:00
tokio = { version = "1.39.2", features = ["macros", "signal", "rt-multi-thread"] }
2024-07-22 02:37:19 -04:00
tokio-postgres = "0.7.11"
2024-07-19 19:56:58 -04:00
uptime_lib = "0.3.1"
[features]
production = []
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