yorokobot/Cargo.toml

24 lines
791 B
TOML
Raw Normal View History

2022-09-22 05:18:00 +02:00
[package]
name = "yorokobot"
description = "Discord bot implementing a topic management 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]
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"] }
serde = { version = "1.0", features = [ "derive" ] }
log = "0.4.17"
2022-11-20 00:53:16 +01:00
futures = "0.3.25"
2025-01-01 15:26:58 +01:00
env_logger = "0.11.6"
[lints.rust]
unsafe_code= "forbid"
missing_docs = "forbid"