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-02-15 02:18:44 +01:00
|
|
|
lto = "fat"
|
2025-02-14 10:26:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-02-13 20:31:49 +01:00
|
|
|
[dependencies]
|
|
|
|
|
dotenv = "0.15.0"
|
2025-02-14 01:03:42 +01:00
|
|
|
regex = "1.11.1"
|
|
|
|
|
once_cell = "1.20.3"
|
|
|
|
|
|
2025-02-13 20:31:49 +01:00
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
|
version = "1.43.0"
|
|
|
|
|
features = [
|
2025-02-14 01:03:42 +01:00
|
|
|
"rt",
|
2025-02-13 20:31:49 +01:00
|
|
|
"macros",
|
|
|
|
|
]
|
|
|
|
|
|
2025-02-14 01:03:42 +01:00
|
|
|
|
2025-02-13 20:31:49 +01:00
|
|
|
[dependencies.serenity]
|
2025-02-14 01:03:42 +01:00
|
|
|
version = "0.12.4"
|
2025-02-14 14:18:09 +01:00
|
|
|
features = [
|
|
|
|
|
"interactions_endpoint",
|
|
|
|
|
"utils",
|
|
|
|
|
"collector"
|
|
|
|
|
]
|
2025-02-14 01:03:42 +01:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.138"
|