19 lines
889 B
TOML
19 lines
889 B
TOML
[package]
|
|
name = "yorokobot"
|
|
description = "Discord bot implementing a topic management system"
|
|
version = "0.2.1"
|
|
authors = [ "Victor Mignot <dala@dalaran.fr>" ]
|
|
license = "EUPL-1.2"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serenity = { version="0.11", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "collector" ] }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
mongodb = { version = "2.3.0", default-features = false, features = ["tokio-runtime"] }
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
log4rs = { version = "1.2.0", features = [ "console_appender", "rolling_file_appender", "compound_policy", "fixed_window_roller", "size_trigger", "gzip", "background_rotation" ] }
|
|
log = "0.4.17"
|
|
futures = "0.3.25"
|