splatie/Cargo.toml

42 lines
576 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"
lto = "fat"
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-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"