2019-10-12 00:48:15 -07:00
|
|
|
[package]
|
|
|
|
name = "riven"
|
2019-10-22 00:01:11 -07:00
|
|
|
version = "0.0.4"
|
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-10-13 23:38:22 -07:00
|
|
|
description = "Riot API Library (WIP)"
|
2019-10-12 00:50:59 -07:00
|
|
|
license = "LGPL-3.0"
|
2019-10-12 00:48:15 -07:00
|
|
|
edition = "2018"
|
2019-10-20 19:28:29 -07:00
|
|
|
include = [ "src/**/*" ]
|
2019-10-12 00:48:15 -07:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2019-10-18 13:18:26 -07:00
|
|
|
log = "0.4"
|
2019-10-19 02:25:09 -07:00
|
|
|
num-traits = "0.2"
|
|
|
|
num-derive = "0.3"
|
2019-10-14 01:00:20 -07:00
|
|
|
parking_lot = { version = "0.9", features = [ "nightly" ] }
|
2019-10-13 23:38:22 -07:00
|
|
|
reqwest = { version = "0.10.0-alpha.1", features = [ "gzip", "json" ] }
|
2019-10-18 13:18:26 -07:00
|
|
|
scan_fmt = "0.2"
|
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"
|
|
|
|
strum = "0.16"
|
|
|
|
strum_macros = "0.16"
|
2019-10-20 00:54:01 -07:00
|
|
|
tokio-timer = "0.3.0-alpha.5"
|
2019-10-19 14:39:53 -07:00
|
|
|
url = "2.1"
|
2019-10-18 13:18:26 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-10-20 00:54:01 -07:00
|
|
|
colored = "1.8"
|
2019-10-18 13:18:26 -07:00
|
|
|
env_logger = "0.7"
|
2019-10-20 00:54:01 -07:00
|
|
|
lazy_static = "1.4"
|
2019-10-19 02:25:09 -07:00
|
|
|
tokio = "0.2.0-alpha.6"
|