-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (38 loc) · 950 Bytes
/
Cargo.toml
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
[package]
name = "qqbot-sdk"
version = "0.1.0"
edition = "2021"
[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 = "0.14.26"
http = "0.2.9"
env_logger = "0.10.0"
log = "0.4.18"
[dependencies.serde]
version = "1.0.163"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.96"
[dependencies.chrono]
version = "0.4.26"
features = ["serde"]
[dependencies.reqwest]
version = "0.11.12"
features = ["json"]
[dependencies.tokio-tungstenite]
version = "0.20.0"
features = ["native-tls"]
[dependencies.futures-util]
version = "0.3.28"
[dependencies.tokio]
version = "1.28.2"
features = ["rt", "macros", "rt-multi-thread", "signal"]
[dependencies.async-trait]
version = "0.1.68"
[dependencies-dev.tokio]
version = "1.28.2"
features = ["rt", "macros", "rt-multi-thread", "signal"]