33 lines
600 B
TOML
33 lines
600 B
TOML
[package]
|
|
name = "grammar-bot"
|
|
version = "0.1.0"
|
|
authors = ["xenofem <xenofem@xeno.science>"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
purrchance = "0.4.0"
|
|
serde = "1.0.112"
|
|
toml = "0.5.6"
|
|
|
|
[dependencies.serenity]
|
|
git = "https://github.com/Lakelezz/serenity/"
|
|
branch = "await"
|
|
default-features = false
|
|
features = [
|
|
"builder",
|
|
"cache",
|
|
"client",
|
|
"gateway",
|
|
"http",
|
|
"model",
|
|
"utils",
|
|
"rustls_backend",
|
|
]
|
|
|
|
[dependencies.tokio]
|
|
version = "0.2"
|
|
features = ["macros"]
|