-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
60 lines (54 loc) · 1.29 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "coc-rs"
version = "0.8.3"
authors = ["Amaan Qureshi <amaanq12@gmail.com>", "Sahil"]
edition = "2021"
description = "A Rust crate wrapper around the Clash of Clans public API"
readme = "README.md"
homepage = "https://github.com/amaanq/coc.rs#README"
repository = "https://github.com/amaanq/coc.rs"
license = "MIT"
keywords = ["Clash_of_Clans", "Clash", "coc", "api", "Supercell"]
categories = [
"api-bindings",
"asynchronous",
"concurrency",
"config",
"web-programming::http-client",
]
exclude = [".idea/", ".vscode/", "*.txt"]
[dependencies]
anyhow = "~1.0.75"
async-recursion = "~1.0.4"
async-trait = "~0.1.73"
base64 = "~0.21.3"
chrono = "~0.4.28"
dashmap = "~5.5.3"
lazy_static = "~1.4.0"
num-derive = "~0.4.0"
num-traits = "~0.2.16"
rand = "~0.8.5"
regex = "~1.9.4"
thiserror = "~1.0.47"
time = "~0.3.28"
url = "~2.4.1"
urlencoding = "~2.1.3"
serde = { version = "~1.0.188", features = ["derive"] }
serde_json = "~1.0.105"
serde_repr = "~0.1.16"
futures = "~0.3.28"
parking_lot = "~0.12.1"
reqwest = { version = "~0.11.20", features = [
"json",
"cookie_store",
"cookies",
] }
tokio = { version = "~1.32.0", features = ["full"] }
tracing = { version = "~0.1.37", optional = true }
[lib]
doctest = false
[features]
default = []
cos = []
extra = []
all = ["cos", "extra", "tracing"]