[package]
edition = "2021"
name = "asoiaf-api"
version = "0.1.2"
authors = ["Yago Iglesias Vazquez <yago.iglesias.vazquez@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust wrapper for the api of ice and fire."
documentation = "https://docs.rs/asoiaf-api"
readme = "README.md"
keywords = [
"wrapper",
"asoiaf",
"api",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Yag000/asoiaf-rs"
[lib]
name = "asoiaf_api"
path = "src/lib.rs"
[[test]]
name = "basic_calls"
path = "tests/basic_calls.rs"
[[test]]
name = "filters"
path = "tests/filters.rs"
[[test]]
name = "iterator"
path = "tests/iterator.rs"
[dependencies.reqwest]
version = "0.12.4"
[dependencies.serde]
version = "1.0.202"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.117"
[dev-dependencies.tokio]
version = "1.37.0"
features = [
"rt-multi-thread",
"macros",
]