[package]
edition = "2024"
name = "rbgg"
version = "0.2.1"
authors = ["Jay Deiman <jay@splitstreams.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple Rust library that will fetch the BGG data using the APIs defined on boardgamegeek.com (https://boardgamegeek.com/wiki/page/BGG_XML_API). This will take input queries and return JSON responses."
homepage = "https://github.com/crustymonkey/rbgg"
readme = "README.md"
license = "GPL-2.0-or-later"
repository = "https://github.com/crustymonkey/rbgg"
[lib]
name = "rbgg"
path = "src/lib.rs"
doctest = false
[[test]]
name = "integration-tests"
path = "tests/integration-tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.reqwest]
version = "0.11"
features = ["blocking"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"test-util",
"time",
"macros",
]
[dependencies.urlencoding]
version = "2"
[dependencies.xmltojson]
version = "0.1"