-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (38 loc) · 1.22 KB
/
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
[package]
name = "warframe"
version = "6.2.0"
edition = "2021"
description = "An async crate to wrap Warframe's Worldstate API."
readme = "./README.md"
documentation = "https://docs.rs/warframe"
homepage = "https://docs.rs/warframe"
repository = "https://github.com/Mettwasser/warframe.rs"
license = "MIT"
[features]
default = ["worldstate"]
full = ["worldstate_full", "market_full"]
worldstate = []
multilangual = ["worldstate"]
worldstate_listeners = ["worldstate"]
worldstate_full = ["worldstate", "multilangual", "worldstate_listeners"]
market = []
market_cache = ["market", "dep:moka"]
market_full = ["market", "market_cache"]
[dependencies]
tokio = { version = "1.39.3", features = ["full"] }
reqwest = { version = "0.12.7", features = ["json"] }
chrono = { version = "0.4.38", features = ["serde", "clock"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = { version = "1.0.127" }
serde_repr = "0.1.19"
futures = "0.3.30"
log = "0.4.22"
env_logger = "0.11.5"
thiserror = "1.0.63"
moka = { version = "0.12.8", optional = true, features = ["future"] }
urlencoding = "2.1.3"
derive_more = { version = "1.0.0", features = ["full"] }
serde_with = "3.11.0"
# TODO: use this lint in V7
# [lints.clippy]
# pedantic = "warn"