2022-09-22 05:18:00 +02:00
|
|
|
[package]
|
|
|
|
name = "yorokobot"
|
2025-01-01 01:12:08 +01:00
|
|
|
description = "A Discord bot to handle a topic subscription system"
|
2023-06-08 00:09:06 +02:00
|
|
|
version = "0.2.1"
|
2025-01-01 01:12:08 +01:00
|
|
|
authors = [ "Victor Mignot <dala@dalaran.fr>" ]
|
|
|
|
license = "EUPL-1.2"
|
|
|
|
readme = "README.md"
|
2022-09-22 05:18:00 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-03 22:00:52 +02:00
|
|
|
serenity = { version="0.11", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "collector" ] }
|
2022-10-17 06:12:07 +02:00
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
2022-11-20 00:53:16 +01:00
|
|
|
mongodb = { version = "2.3.0", default-features = false, features = ["tokio-runtime"] }
|
2022-10-19 05:23:11 +02:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2022-10-22 01:59:01 +02:00
|
|
|
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"
|
2022-11-20 00:53:16 +01:00
|
|
|
futures = "0.3.25"
|