48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "botdiscord"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "botdiscord"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
uuid = { version = "1.4", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
utoipa = { version = "4", features = ["actix_extras", "chrono", "uuid"] }
|
|
serde_json = "1.0"
|
|
tokio-postgres = { version = "0.7", features = [
|
|
"with-uuid-1",
|
|
"with-chrono-0_4",
|
|
"with-serde_json-1",
|
|
] }
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
deadpool-postgres = { version = "0.11", features = ["serde"] }
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
postgres-openssl = "0.5.0"
|
|
toml = "0.8"
|
|
actix-web = "4"
|
|
actix-cors = "0.6.4"
|
|
utoipa-swagger-ui = { version = "4.0.0", features = ["actix-web"] }
|
|
regex = "1.10.0"
|
|
dotenvy = "0.15.7"
|
|
actix = "0.13.1"
|
|
serial_test = "2.0.0"
|
|
|
|
serenity = { version = "0.12", default-features = false, features = [
|
|
"client",
|
|
"gateway",
|
|
"rustls_backend",
|
|
"model",
|
|
"framework",
|
|
"standard_framework",
|
|
] }
|
|
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }
|
|
|
|
|
|
[[bin]]
|
|
name = "botdiscord"
|
|
path = "src/main.rs"
|
|
test = true
|