Rustbot/Cargo.toml

29 lines
519 B
TOML
Raw Normal View History

2023-12-04 00:35:42 -05:00
[package]
name = "rustbot"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-03-13 05:27:16 -04:00
cargo_toml = "0.19.2"
once_cell = "1.19.0"
poise = "0.6.1"
sysinfo = "0.30.8"
2024-03-13 05:27:16 -04:00
tempfile = "3.10.1"
2024-03-26 19:15:47 -04:00
tokenservice-client = { version = "0.2.0", registry = "gitea" }
tokio = { version = "1.37.0", features = ["macros", "signal", "rt-multi-thread"] }
tokio-postgres = "0.7.10"
2024-01-06 22:43:10 -05:00
uptime_lib = "0.3.0"
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