19 lines
693 B
TOML
19 lines
693 B
TOML
|
[package]
|
||
|
name = "geoffrey_bot"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
serenity = { git="https://github.com/serenity-rs/serenity.git", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "unstable_discord_api", "cache"] }
|
||
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
||
|
reqwest = { version = "0.11.6", features = ["json"]}
|
||
|
geoffrey_models = { path = "../geoffrey_models" }
|
||
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
serde_json = "1.0"
|
||
|
serde_plain = "1.0.0"
|
||
|
async-trait = "0.1.51"
|
||
|
config = "0.11.0"
|
||
|
structopt = "0.3.21"
|