rbgg 0.2.1

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.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"