[package]
edition = "2021"
rust-version = "1.96"
name = "backstage-client"
version = "0.1.4"
authors = ["Guillaume GRABÉ <guillaume.grabe@proton.me>"]
build = false
exclude = [
"sample.json",
"target/",
".env*",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust client library for interacting with the Backstage Catalog API. Provides type-safe access to Backstage entities with async support, filtering, and comprehensive error handling."
homepage = "https://radicle.siryu.me/nodes/seed.siryu.me/rad:znFjakfBVGZj4HDCQVEfzffZqVsg"
documentation = "https://docs.rs/backstage-client"
readme = "README.md"
keywords = [
"backstage",
"api",
"catalog",
"client",
"devops",
]
categories = [
"web-programming",
"api-bindings",
"development-tools",
]
license = "MIT"
repository = "https://radicle.siryu.me/nodes/seed.siryu.me/rad:znFjakfBVGZj4HDCQVEfzffZqVsg"
[features]
default = []
integration-tests = []
[lib]
name = "backstage_client"
path = "src/lib.rs"
[[bin]]
name = "backstage-client"
path = "src/main.rs"
[[example]]
name = "fetch_all_entities"
path = "examples/fetch_all_entities.rs"
[[example]]
name = "fetch_with_filters"
path = "examples/fetch_with_filters.rs"
[[example]]
name = "get_specific_entity"
path = "examples/get_specific_entity.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.env_logger]
version = "0.11.11"
[dependencies.log]
version = "0.4.33"
[dependencies.reqwest]
version = "0.13.4"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.tokio]
version = "1.52"
features = ["full"]
[dependencies.url]
version = "2.5.8"
[dependencies.urlencoding]
version = "2.1.3"
[dev-dependencies.mockito]
version = "1.7.2"