[package]
name = "ghost-io-api"
version = "0.2.0"
edition = "2021"
rust-version = "1.75"
authors = ["Arunkumar Mourougappane <amouroug.dev@gmail.com>"]
description = "Strongly-typed, async Rust client for the Ghost CMS Content and Admin APIs"
license = "MIT"
repository = "https://github.com/arunkumar-mourougappane/ghost-io-api"
homepage = "https://github.com/arunkumar-mourougappane/ghost-io-api"
documentation = "https://docs.rs/ghost-io-api"
readme = "README.md"
keywords = ["ghost", "cms", "api", "async", "admin"]
categories = ["web-programming::http-client", "api-bindings", "asynchronous"]
exclude = [
".github/",
"docs/",
"RELEASE_NOTES.md",
]
[dependencies]
thiserror = "1.0"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.22"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
wiremock = "0.6"
[features]
integration-tests = []