Rustbot/Cargo.toml

29 lines
521 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-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"
sysinfo = "0.31.0"
2024-03-13 05:27:16 -04:00
tempfile = "3.10.1"
2024-08-01 00:51:43 -04:00
tokenservice-client = { version = "0.3.3", registry = "gitea" }
tokio = { version = "1.39.2", features = [ "macros", "signal", "rt-multi-thread" ] }
tokio-postgres = "0.7.11"
uptime_lib = "0.3.1"
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