mirror of
https://github.com/revanced/revanced-discord-bot.git
synced 2025-04-29 22:14:28 +02:00
32 lines
915 B
TOML
32 lines
915 B
TOML
[package]
|
|
authors = ["oSumAtrIX"]
|
|
description = "The official Discord bot assisting the ReVanced Discord server"
|
|
homepage = "https://revanced.app"
|
|
keywords = ["ReVanced"]
|
|
license = "GPL-3.0"
|
|
name = "revanced-discord-bot"
|
|
repository = "https://github.com/revanced/revanced-discord-bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
dotenv = "0.15"
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["rt-multi-thread"] }
|
|
log = { version = "0.4", features = ["max_level_debug", "release_max_level_warn"] }
|
|
regex = "1.0"
|
|
serde_regex = "1.1"
|
|
chrono = "0.4"
|
|
serenity = { git = "https://github.com/serenity-rs/serenity.git", default_features = false, features = ["client", "gateway", "rustls_backend", "model"] }
|
|
simplelog = "0.12.0"
|
|
anyhow = "1.0.58"
|
|
dirs = "4.0.0"
|