-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 742 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "kanami"
version = "0.1.0"
edition = "2024"
description = "A suckless styled QQ bot client works with NapCat"
[dependencies]
anyhow = "1.0.99"
async-trait = "0.1.88"
chrono = "0.4.41"
dashmap = "6.1.0"
futures-util = "0.3"
lazy_static = "1.5.0"
log = "0.4.27"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
tokio = { version = "1.47.1", features = ["rt-multi-thread", "macros", "time", "sync"] }
tokio-tungstenite = "0.27.0"
uuid = { version = "1.18.0", features = ["v4"] }
tokio-cron-scheduler = "0.14.0"
regex = "1.11.1"
base64 = "0.22.1"
rand = "0.9.2"
[features]
default = ["napcat"]
napcat = []
tls = ["tokio-tungstenite/native-tls"]