-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (46 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (46 loc) · 1.05 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "qqbot-sdk"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_repr = "0.1.12"
serde_with = "3"
hyper = "1.6"
http = "1.2"
ed25519-dalek = "2.1"
# base64 = "0.22"
hex = "0.4"
tokio-util = { version = "0.7" }
# headers = "0.4.0"
[dependencies.axum-extra]
# features = ["typed-header"]
version = "0.10"
[dependencies.tracing]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive", "rc"]
[dependencies.serde_json]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.futures-util]
version = "0.3.28"
[dependencies.tokio]
version = "1"
features = ["rt", "macros", "rt-multi-thread", "signal"]
[dependencies.async-trait]
version = "0.1.68"
[dependencies.axum]
version = "0.8"
features = []
[dependencies-dev.tokio]
version = "1"
features = ["rt", "macros", "rt-multi-thread", "signal"]