splatie/Cargo.toml

44 lines
677 B
TOML
Raw Normal View History

2025-02-13 20:31:49 +01:00
[package]
name = "professor"
version = "0.1.0"
edition = "2021"
2025-02-14 10:26:09 +01:00
[profile.release]
opt-level = 3
overflow-checks = false
debug = "none"
debug-assertions = false
strip = true
panic = "abort"
2025-06-04 15:18:21 +02:00
lto = true
2025-02-14 10:26:09 +01:00
2025-02-13 20:31:49 +01:00
[dependencies]
dotenv = "0.15.0"
regex = "1.11.1"
once_cell = "1.20.3"
2025-06-04 15:18:21 +02:00
sarcastic = { git = "https://github.com/DJMrTV/bored-yaml.git" }
chrono = "0.4.39"
reqwest = "0.12.12"
2025-02-13 20:31:49 +01:00
[dependencies.tokio]
version = "1.43.0"
features = [
"rt",
2025-02-13 20:31:49 +01:00
"macros",
]
2025-02-13 20:31:49 +01:00
[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"