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