Rustbot/Cargo.toml

34 lines
581 B
TOML
Raw Normal View History

2023-12-04 00:35:42 -05:00
[package]
name = "rustbot"
version = "0.1.0"
edition = "2021"
[dependencies]
bb8 = "0.8.5"
bb8-postgres = "0.8.1"
2024-08-01 00:51:43 -04:00
cargo_toml = "0.20.4"
2024-03-13 05:27:16 -04:00
once_cell = "1.19.0"
poise = "0.6.1"
regex = "1.10.6"
sysinfo = "0.31.2"
tokenservice-client = { version = "0.4.0", registry = "gitea" }
tokio = { version = "1.39.2", features = ["macros", "signal", "rt-multi-thread"] }
2024-08-01 00:51:43 -04:00
tokio-postgres = "0.7.11"
uptime_lib = "0.3.1"
2023-12-04 00:35:42 -05:00
[features]
production = []
2023-12-04 00:35:42 -05:00
[[bin]]
name = "rustbot"
path = "src/main.rs"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
2024-03-13 05:27:16 -04:00
opt-level = 2
2023-12-04 00:35:42 -05:00
debug = false
strip = true