[package]
edition = "2021"
name = "json-poller"
version = "0.2.0"
authors = ["Erik-Jan van de Wal <hello@erik404.nl>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, flexible, high-performance JSON polling library for Rust."
documentation = "https://docs.rs/json-poller"
readme = "README.md"
keywords = [
"json",
"polling",
"http",
"async",
"api",
]
categories = [
"web-programming::http-client",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/erik404/json-poller"
[lib]
name = "json_poller"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["time"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
]