[package]
edition = "2024"
name = "botcat-capoo"
version = "1.0.3"
authors = ["cclvi256 <i@cclvi.cc>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A NapCat based QQ bot implemented in Rust"
homepage = "https://github.com/cclvi256/botcat-capoo"
readme = "README.md"
keywords = [
"qq",
"bot",
"napcat",
"chatbot",
]
license = "LGPL-3.0-or-later"
repository = "https://github.com/cclvi256/botcat-capoo"
[lib]
name = "botcat_capoo"
path = "src/lib.rs"
[[bin]]
name = "botcat-capoo"
path = "src/main.rs"
[dependencies.axum]
version = "0.8.4"
[dependencies.config]
version = "0.15.15"
[dependencies.rand]
version = "0.9.2"
[dependencies.reqwest]
version = "0.12.23"
features = ["json"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
[dependencies.sqlx]
version = "0.8.6"
features = [
"any",
"chrono",
"macros",
"migrate",
"mysql",
"postgres",
"runtime-tokio-rustls",
"sqlite",
"uuid",
]
[dependencies.thiserror]
version = "2.0.14"
[dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"