27 lines
568 B
TOML
27 lines
568 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.13.3"
|
|
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"
|
|
tera = "1.15.0"
|
|
bitflags = "1.3.2"
|
|
|
|
[dependencies.serenity]
|
|
version = "0.11.5"
|
|
features = ["framework", "standard_framework"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.0"
|
|
features = ["macros", "rt-multi-thread"] |