[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" log = "0.4.14" chrono = "0.4.19" # Doing this for now, as there seems to be an issue with using timestamps [dependencies.simple_logger] version = "1.16.0" default-features = false features = ["colors"]