[package]
edition = "2024"
name = "boosty_api"
version = "0.25.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "API client for interacting with Boosty platform"
documentation = "https://docs.rs/boosty_api"
readme = "README.md"
keywords = [
"api",
"boosty",
"client",
"http",
"async",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT"
repository = "https://github.com/ath31st/boosty_api_rs"
[lib]
name = "boosty_api"
path = "src/lib.rs"
[[test]]
name = "comment"
path = "tests/comment.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "post"
path = "tests/post.rs"
[[test]]
name = "showcase"
path = "tests/showcase.rs"
[[test]]
name = "subscription"
path = "tests/subscription.rs"
[[test]]
name = "target"
path = "tests/target.rs"
[dependencies.reqwest]
version = "0.12.19"
features = [
"json",
"multipart",
]
[dependencies.rust_decimal]
version = "1.40.0"
features = ["macros"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_path_to_error]
version = "0.1.20"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.48.0"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.mockito]
version = "1.7.0"