wOxlf/Cargo.toml
Joey Hines ea0be5c708
Added profile pic support + fixed an issue with webhook serailization
+ Added imgur module to handle interacting with the imgur api
+ Users now get a random profile pic from an imgur album
+ Switched to using webhook ids instead of storing the full webhook in toml, serenity does not seem to like the toml deserialization
2022-03-20 17:42:50 -06:00

25 lines
534 B
TOML

[package]
name = "woxlf"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
config = "0.12.0"
structopt = "0.3.26"
chrono = {version="0.4.19", features=["serde"]}
serde = "1.0.136"
rand = "0.8.5"
toml = "0.5.8"
regex = "1.5.5"
futures = "0.3.21"
reqwest = "0.11.10"
[dependencies.serenity]
version = "0.10.10"
features = ["framework", "standard_framework"]
[dependencies.tokio]
version = "1.0"
features = ["macros", "rt-multi-thread"]