splatie/Cargo.toml
Spacebot 5572f8db2a
All checks were successful
Build and Test / splatie (push) Successful in 18m41s
Update Rust crate reqwest to 0.13.0
2026-04-28 16:04:34 +00:00

44 lines
676 B
TOML

[package]
name = "professor"
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = 3
overflow-checks = false
debug = "none"
debug-assertions = false
strip = true
panic = "abort"
lto = true
[dependencies]
dotenv = "0.15.0"
regex = "1.11.1"
once_cell = "1.20.3"
sarcastic = { git = "https://github.com/DJMrTV/bored-yaml.git" }
chrono = "0.4.39"
reqwest = "0.13.0"
[dependencies.tokio]
version = "1.43.0"
features = [
"rt",
"macros",
]
[dependencies.serenity]
version = "0.12.4"
features = [
"interactions_endpoint",
"utils",
"collector"
]
[build-dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"