-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 1.09 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
[package]
name = "hypixel_api"
version = "0.1.2"
edition = "2021"
authors = [ "GrizzlT" ]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Generic wrapper around the hypixel api (automatic rate-limiting on client-side)"
repository = "https://github.com/GrizzlT/hypixel-api-rust"
keywords = [ "hypixel", "api", "wrapper", "rate-limiting", "PublicAPI" ]
categories = [ "api-bindings", "asynchronous" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
uuid = { version = "1.2.2", features = [ "serde" ] }
serde = { version = "1.0.136", features = ["derive"] }
chrono = { version = "0.4.19", features = ["serde"] }
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }
parking_lot = "0.12.0"
reqwest = { version = "0.11.9", features = ["json"] }
futures = "0.3.21"
tracing = { version = "0.1.31", optional = true }
thiserror = "1.0.30"
convert_case = "0.6.0"
[features]
default = [ "reply" ]
reply = [ "util" ]
util = []
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "./src/docs-header.html" ]