-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 749 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 749 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
31
32
33
34
35
[package]
name = "enka-rs"
version = "0.1.1"
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["TheSast <27977196+TheSast@users.noreply.github.com>"]
readme = "README.md"
[dependencies]
reqwest = { version = "0.12.12", default-features = false, features = [
# "blocking",
"json",
"rustls-tls",
] } # TODO: make lib client-agnostic
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
thiserror = "2.0.12"
[dev-dependencies]
tokio = { version = "1.43.0", features = ["full"] }
[features]
default = ["gi"]
full = ["logging", "stateful", "gi"] #, "hsr", "zzz"]
# auto-cache = []
logging = []
stateful = []
gi = []
# hsr = []
# zzz = []
[[example]]
name = "wrapper"
required-features = ["stateful"]