Kon/Cargo.toml

40 lines
774 B
TOML
Raw Normal View History

2023-12-07 22:01:13 -05:00
[package]
name = "kon"
2024-12-02 08:17:58 -05:00
version = "0.5.1"
edition = "2024"
2023-12-07 22:01:13 -05:00
[dependencies]
2024-11-19 11:42:58 -05:00
bb8 = "0.8.6"
2024-09-21 12:49:01 -04:00
bb8-redis = "0.17.0"
2024-10-08 02:25:07 -04:00
cargo_toml = "0.20.5"
2024-11-19 11:42:58 -05:00
feed-rs = "2.2.0"
2024-10-08 02:25:07 -04:00
once_cell = "1.20.2"
poise = "0.6.1"
2024-11-19 11:42:58 -05:00
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["json", "native-tls-vendored"] }
serde = "1.0.215"
serde_json = "1.0.133"
2024-12-02 08:17:58 -05:00
sysinfo = "0.32.1"
tokenservice-client = { version = "0.4.1", registry = "gitea" }
2024-11-19 11:42:58 -05:00
tokio = { version = "1.41.1", features = ["macros", "signal", "rt-multi-thread"] }
2024-07-19 19:56:58 -04:00
uptime_lib = "0.3.1"
2024-11-19 11:42:58 -05:00
[patch.crates-io]
poise = { git = "https://github.com/serenity-rs/poise", branch = "next" }
2024-07-19 19:56:58 -04:00
[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