2019-10-12 00:48:15 -07:00
|
|
|
[package]
|
|
|
|
name = "riven"
|
2021-05-09 09:59:42 -07:00
|
|
|
version = "1.12.0"
|
2019-10-12 00:48:15 -07:00
|
|
|
authors = ["Mingwei Samuel <mingwei.samuel@gmail.com>"]
|
2019-10-20 19:28:29 -07:00
|
|
|
repository = "https://github.com/MingweiSamuel/Riven"
|
2019-11-04 23:29:46 -08:00
|
|
|
description = "Riot Games API Library"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
2019-10-12 00:48:15 -07:00
|
|
|
edition = "2018"
|
2019-11-04 23:29:46 -08:00
|
|
|
include = [ "src/**", "/README.md" ]
|
2019-11-07 12:56:59 -08:00
|
|
|
keywords = [ "riot-games", "riot", "league", "league-of-legends" ]
|
|
|
|
categories = [ "api-bindings", "web-programming::http-client" ]
|
2019-11-04 23:29:46 -08:00
|
|
|
|
2019-11-13 17:14:28 -08:00
|
|
|
#[badges]
|
|
|
|
#travis-ci = { repository = "MingweiSamuel/Riven" }
|
2019-10-12 00:48:15 -07:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2019-11-07 16:38:53 -08:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = [ "nightly" ]
|
|
|
|
|
2019-11-07 12:45:13 -08:00
|
|
|
[features]
|
|
|
|
nightly = [ "parking_lot/nightly" ]
|
|
|
|
|
2019-10-12 00:48:15 -07:00
|
|
|
[dependencies]
|
2020-06-04 22:39:51 -07:00
|
|
|
lazy_static = "1.4"
|
2019-10-18 13:18:26 -07:00
|
|
|
log = "0.4"
|
2021-01-05 14:17:23 -08:00
|
|
|
num_enum = "0.5"
|
|
|
|
parking_lot = "0.11"
|
|
|
|
reqwest = { version = "0.11", features = [ "gzip", "json" ] }
|
2019-10-26 10:01:41 -07:00
|
|
|
scan_fmt = { version = "0.2", default-features = false }
|
2019-10-19 14:39:53 -07:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2019-10-25 13:37:23 -07:00
|
|
|
serde_repr = "0.1"
|
2021-01-05 14:17:23 -08:00
|
|
|
strum = "0.20"
|
|
|
|
strum_macros = "0.20"
|
|
|
|
tokio = { version = "1", default-features = false, features = [ "time" ] }
|
|
|
|
url = "2"
|
2019-10-18 13:18:26 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-05 14:17:23 -08:00
|
|
|
colored = "2"
|
|
|
|
env_logger = "0.8"
|
2019-11-04 23:29:46 -08:00
|
|
|
fake_instant = "0.4"
|
2021-01-05 14:17:23 -08:00
|
|
|
tokio = { version = "1", default-features = false, features = [ "rt-multi-thread" ] }
|