-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
31 lines (28 loc) · 870 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
[package]
name = "tarkov"
description = "A client library for the Escape from Tarkov API"
version = "0.1.6"
authors = ["Dan Kyung <dan@kyung.ca>"]
edition = "2018"
readme = "README.md"
license = "MIT"
keywords = ["escapefromtarkov", "eft", "tarkov", "sdk", "api"]
include = ["src/**/*", "Cargo.toml", "LICENSE"]
repository = "https://github.com/dank/tarkov"
documentation = "https://docs.rs/tarkov"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
md5 = "0.7"
err-derive = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
flate2 = { version = "1.0", features = ["zlib"], default-features = false }
rand = "0.7"
log = "0.4"
serde_repr = "0.1"
hyper = "0.13"
hyper-tls = "0.4"
http = "0.2"
[dev-dependencies]
env_logger = "0.7"
tokio = { version = "0.2", features = ["macros"] }