Riven/Cargo.toml

19 lines
487 B
TOML
Raw Normal View History

2019-10-12 07:48:15 +00:00
[package]
name = "riven"
version = "0.0.1"
authors = ["Mingwei Samuel <mingwei.samuel@gmail.com>"]
2019-10-14 06:38:22 +00:00
description = "Riot API Library (WIP)"
2019-10-12 07:50:59 +00:00
license = "LGPL-3.0"
2019-10-12 07:48:15 +00:00
edition = "2018"
2019-10-12 07:50:59 +00:00
exclude = [
".gitignore"
]
2019-10-12 07:48:15 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2019-10-14 06:38:22 +00:00
async-std = "0.99"
2019-10-14 08:00:20 +00:00
parking_lot = { version = "0.9", features = [ "nightly" ] }
2019-10-14 06:38:22 +00:00
reqwest = { version = "0.10.0-alpha.1", features = [ "gzip", "json" ] }
serde = "^1.0"