-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (40 loc) · 896 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
[package]
authors = [ "Ennui.lw" ]
description = "A API-Wrapper of miHoYo games in Rust"
categories = [ "API", "API-Wrapper" ]
edition = "2021"
keywords = [ "mihoyo", "hoyoverse", "genshin", "starrail" ]
license = "MIT"
name = "miHoYo-API"
repository = "https://github.com/miHoYo-API/miHoYo-API-Wrapper"
version = "0.1.10"
[features]
default = [ "genshin", "honkai", "starrail" ]
genshin = []
honkai = []
starrail = ["mihomo"]
mihomo = []
full = ["genshin", "honkai", "starrail"]
[dependencies]
async-trait = "0.1.72"
anyhow = "1.0.72"
dotenv = "0.15.0"
once_cell = "1.18.0"
serde_json = "1.0.107"
rand = "0.8.5"
rust-crypto = "0.2.36"
thiserror = "1.0.50"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"multipart",
"stream",
"cookies"
]
[dependencies.tokio]
version = "1.33"
features = ["macros"]