Rustbot/Cargo.toml
Renovate bcedb8e848
Some checks failed
renovate/artifacts Artifact file update failure
Update Rust crate sysinfo to 0.31.0
PR created by Renovate Bot.
2024-07-31 12:53:19 +00:00

29 lines
519 B
TOML

[package]
name = "rustbot"
version = "0.1.0"
edition = "2021"
[dependencies]
cargo_toml = "0.20.3"
once_cell = "1.19.0"
poise = "0.6.1"
sysinfo = "0.31.0"
tempfile = "3.10.1"
tokenservice-client = { version = "0.3.1", registry = "gitea" }
tokio = { version = "1.38.0", features = ["macros", "signal", "rt-multi-thread"] }
tokio-postgres = "0.7.10"
uptime_lib = "0.3.0"
[[bin]]
name = "rustbot"
path = "src/main.rs"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 2
debug = false
strip = true