24 lines
497 B
TOML
24 lines
497 B
TOML
[package]
|
|
name = "fren"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
config = "0.13.2"
|
|
structopt = "0.3.26"
|
|
reqwest = "0.11.12"
|
|
serde = "1.0.147"
|
|
toml = "0.5.9"
|
|
rand = "0.8.5"
|
|
tera = "1.17.1"
|
|
ndm = "0.9.9"
|
|
|
|
[dependencies.serenity]
|
|
version = "0.11.5"
|
|
features = ["framework", "standard_framework", "rustls_backend"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.0"
|
|
features = ["macros", "rt-multi-thread"] |