yorokobot/Cargo.toml

24 lines
844 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"
repository = "https://git.dalaran.fr/dala/yorokobot"
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" ] }
log = "0.4.17"
futures = "0.3.25"
env_logger = "0.11.6"
[lints.rust]
unsafe_code= "forbid"
missing_docs = "forbid"