61 lines
1.6 KiB
TOML
61 lines
1.6 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"
|
|
serde_yaml = "0.9"
|
|
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"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
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"
|
|
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] }
|
|
rand = "0.8.5"
|
|
walkdir = "2.4.0"
|
|
surrealdb = "1.1.1"
|
|
once_cell = "1.19.0"
|
|
poise = { version = "0.6.1", features = ["cache"] }
|
|
tracing = "0.1"
|
|
tracing-actix-web = "0.7.9"
|
|
serde_repr = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = [
|
|
"registry",
|
|
"env-filter",
|
|
"time",
|
|
] }
|
|
time = "0.3.36"
|
|
tracing-bunyan-formatter = "0.3"
|
|
opentelemetry = "0.23"
|
|
opentelemetry_sdk = { version = "0.23", features = ["rt-tokio"] }
|
|
opentelemetry-otlp = { version = "0.16" }
|
|
tracing-opentelemetry = "0.24"
|
|
tokio-cron-scheduler = { version = "0.10", features = [
|
|
"tracing-subscriber",
|
|
"signal",
|
|
] }
|
|
serde_with = "3.8.1"
|
|
tokio-cron = "0.1.3"
|
|
cron = "0.12.1"
|
|
|
|
[patch.crates-io]
|
|
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "current" }
|
|
|
|
[[bin]]
|
|
name = "botdiscord"
|
|
path = "src/main.rs"
|
|
test = true
|