forked from mirror/Riven
parent
a604b5f39e
commit
1e76906864
10
Cargo.toml
10
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "riven"
|
name = "riven"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["Mingwei Samuel <mingwei.samuel@gmail.com>"]
|
authors = ["Mingwei Samuel <mingwei.samuel@gmail.com>"]
|
||||||
repository = "https://github.com/MingweiSamuel/Riven"
|
repository = "https://github.com/MingweiSamuel/Riven"
|
||||||
description = "Riot Games API Library"
|
description = "Riot Games API Library"
|
||||||
|
@ -11,8 +11,8 @@ include = [ "src/**", "/README.md" ]
|
||||||
keywords = [ "riot-games", "riot", "league", "league-of-legends" ]
|
keywords = [ "riot-games", "riot", "league", "league-of-legends" ]
|
||||||
categories = [ "api-bindings", "web-programming::http-client" ]
|
categories = [ "api-bindings", "web-programming::http-client" ]
|
||||||
|
|
||||||
[badges]
|
#[badges]
|
||||||
travis-ci = { repository = "MingweiSamuel/Riven" }
|
#travis-ci = { repository = "MingweiSamuel/Riven" }
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ nightly = [ "parking_lot/nightly" ]
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
num_enum = "0.4"
|
num_enum = "0.4"
|
||||||
parking_lot = "0.9"
|
parking_lot = "0.9"
|
||||||
reqwest = { version = "0.10.0-alpha.1", features = [ "gzip", "json" ] }
|
reqwest = { version = "0.10.0-alpha.2", features = [ "gzip", "json" ] }
|
||||||
scan_fmt = { version = "0.2", default-features = false }
|
scan_fmt = { version = "0.2", default-features = false }
|
||||||
serde = { version = "1.0", features = [ "derive" ] }
|
serde = { version = "1.0", features = [ "derive" ] }
|
||||||
serde_repr = "0.1"
|
serde_repr = "0.1"
|
||||||
|
@ -34,8 +34,6 @@ strum = "0.16"
|
||||||
strum_macros = "0.16"
|
strum_macros = "0.16"
|
||||||
tokio = { version = "0.2.0-alpha.6", default-features = false, features = [ "timer" ] }
|
tokio = { version = "0.2.0-alpha.6", default-features = false, features = [ "timer" ] }
|
||||||
url = "2.1"
|
url = "2.1"
|
||||||
# TODO temp pin.
|
|
||||||
async-compression = { version = "=0.1.0-alpha.7", default-features = false, features = ["gzip", "stream"], optional = true }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
colored = "1.8"
|
colored = "1.8"
|
||||||
|
|
Loading…
Reference in New Issue