[package]
edition = "2021"
rust-version = "1.75"
name = "ghost-io-api"
version = "0.2.0"
authors = ["Arunkumar Mourougappane <amouroug.dev@gmail.com>"]
build = false
exclude = [
".github/",
"docs/",
"RELEASE_NOTES.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Strongly-typed, async Rust client for the Ghost CMS Content and Admin APIs"
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",
]
license = "MIT"
repository = "https://github.com/arunkumar-mourougappane/ghost-io-api"
[features]
integration-tests = []
[lib]
name = "ghost_io_api"
path = "src/lib.rs"
[[example]]
name = "list_posts"
path = "examples/list_posts.rs"
[[example]]
name = "publish_post"
path = "examples/publish_post.rs"
[dependencies.base64]
version = "0.22"
[dependencies.hmac]
version = "0.12"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"