Rust client library for Boaviztapi.
Note
The code of this library is mostly generated automatically from the OpenAPI specification of Boavizta API.
Still, some part are patched manually (See #6).
This library is used and tested in the context of cloud scanner, so we know that API routes related to cloud work well. But it may still contain bugs for other non-cloud API routes.
Please open an issue if you notice such behavior.
- SDK version 1.3.3 supports Boavizta API 1.3.3
- SDK version 1.3.0 supports Boavizta API 1.3
- SDK version 1.2.0 supports Boavizta API 1.2.0
- SDK version 1.1.0 supports Boavizta API 1.1.0
- SDK version 1.0.1 supports Boavizta API 1.0.1 (and historical 0.3.x series)
- SDK version 0.3.X supports Boavizta API of the 0.3.x series
- SDK version 0.2.x support Boavizta API of the 0.2.x series (Neither SDK nor API will not be updated after release of Boavizta API v0.3.x - around June 2023)
- SDK documentation (crate) boavizta_api_sdk - Rust
- Boavizta API documentation
SDK is generated from the published openAPI specification of Boaviztapi (http://api.boavizta.org/openapi.json).
We use openapi-generator-cli to generate the SDK. See GitHub - OpenAPITools/openapi-generator-cli: A node package wrapper for https://github.com/OpenAPITools/openapi-generator .
# Generate for public API
docker run --rm -v "${PWD}:/local" openapitools/openapi-generator-cli:v7.10.0 generate -i https://api.boavizta.org/openapi.json -g rust -o /local/ --package-name boavizta_api_sdk
# Generate against a Local API (dev, using network host /!\)
docker run --network=host --rm -v "${PWD}:/local" openapitools/openapi-generator-cli:v7.10.0 generate -i http://localhost:5000/openapi.json -g rust -o /local/ --package-name boavizta_api_sdk
The generated code require some manual updates before being usable.
To generate the SDK for a specific version of BoaviztaAPI (e.g. a dev branch or unreleased version), you have to:
- retrieve the openapi.yml specification of the API
- run the generator against this file
- if needed publish the generated SDK wth an alpha version
Metadata of Cargo.toml are overwritten by generation.
- verify that version of package is consistent
- update it with the following values
description = "A Rust client/sdk to access Boavizta API"
homepage = "https://boavizta.org"
repository = "https://github.com/Boavizta/boaviztapi-sdk-rust/"
readme = "README.md"
authors = ["boavizta.org", "olivier de Meringo"]
edition = "2021"
license-file = "LICENSE"
Ensure that the dependency on reqwest
does not use native SSL(the default feature), but uses rust-tls
. It makes cross compiling so much easier.
[dependencies.reqwest]
version = "^0.12"
default-features = false
features = ["json", "multipart", "rustls-tls"]
This is a manual action and should be done only by the maintainer of the SDK.
cargo login
cargo publish --dry-run
cargo publish