modbot 0.5.4

Discord bot for https://mod.io. ModBot provides commands to search for mods and notifications about added & edited mods.
[package]
name = "modbot"
version = "0.5.4"
description = """Discord bot for https://mod.io.
ModBot provides commands to search for mods and notifications about added & edited mods."""
repository = "https://github.com/nickelc/modio-bot"
license = "MIT OR Apache-2.0"
authors = ["Constantin Nickel <constantin.nickel@gmail.com>"]
keywords = ["modio", "discord", "bot"]
edition = "2021"
rust-version = "1.65.0"
include = ["src/**/*.rs", "src/**/*.md", "LICENSE-*", "README.md", "build.rs", "migrations"]

[dependencies]
bitflags = "1"
bytesize = "1"
csv = "1.1"
dashmap = "5.4"
dbl-rs = "0.3"
dotenv = "0.15"
futures-core = { version = "0.3", default-features = false }
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
hyper = { version = "0.14", features = ["server"] }
kuchiki = "0.8"
pico-args = "0.5"
prometheus = { version = "0.13", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_urlencoded = "0.7"
time = { version = "0.3", features = ["formatting", "macros"] }
tokio = { version = "1.22", features = ["macros", "rt-multi-thread", "signal", "sync", "time" ] }
tokio-stream = "0.1"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }

# diesel
diesel = { version = "2.0", default-features = false, features = ["r2d2", "sqlite"] }
diesel_migrations = "2.0"
libsqlite3-sys = { version = ">=0.17.2, <0.26.0", optional = true }

# twilight
twilight-gateway = "0.14"
twilight-http = "0.14"
twilight-model= "0.14"
twilight-cache-inmemory = "0.14"
twilight-util = { version = "0.14", features = ["builder"] }
twilight-validate = "0.14"

[dependencies.modio]
version = "0.7"
default-features = false
features = ["rustls-tls"]

[build-dependencies]
git2 = { version = "0.16", default-features = false }

[features]
sqlite-bundled = ["libsqlite3-sys/bundled"]

[profile.release]
lto = true