discord-bot/Cargo.toml

45 lines
1 KiB
TOML
Raw Normal View History

2023-08-25 23:36:46 +01:00
[package]
name = "skynet_discord_bot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "update_data"
[[bin]]
name = "update_users"
[[bin]]
name = "update_minecraft"
2023-08-25 23:36:46 +01:00
[dependencies]
# discord library
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "cache"] }
2025-02-19 00:26:54 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread", "full"] }
# wolves api
2025-02-18 13:36:08 +00:00
wolves_oxidised = { git = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git", features = ["unstable"] }
# wolves_oxidised = { path = "../wolves-oxidised", features = ["unstable"] }
# to make the http requests
2025-02-19 00:26:54 +00:00
surf = "2.3"
2023-08-27 17:30:54 +01:00
2025-02-19 00:26:54 +00:00
dotenvy = "0.15"
# For sqlite
2025-02-19 00:26:54 +00:00
sqlx = { version = "0.8", features = [ "runtime-tokio", "sqlite", "migrate" ] }
serde_json = { version = "1.0", features = ["raw_value"] }
# create random strings
2025-02-19 00:26:54 +00:00
rand = "0.9"
2023-09-16 20:03:58 +01:00
# fancy time stuff
2025-02-19 00:26:54 +00:00
chrono = "0.4"
2023-09-16 20:03:58 +01:00
# for email
2025-02-19 00:26:54 +00:00
lettre = "0.11"
maud = "0.27"
serde = "1.0"