Async Rust SDK for the Timeweb Cloud API.
timeweb-rs covers the full Timeweb Cloud public API — 313 operations across
22 areas: cloud servers, managed databases, Kubernetes, projects, domains,
S3 storage, load balancers, firewalls, mail, AI agents, knowledge bases,
floating IPs, VPC, SSH keys, images, dedicated servers, container registry,
network drives and more.
The apis and models modules are generated from the official Timeweb Cloud
OpenAPI specification with openapi-generator
(the same tool behind the official Go, Python, PHP and Java SDKs). A thin
hand-written layer adds an idiomatic authenticated-client constructor. The
generated code is committed to the repository, so building the crate needs no
code generation step and no extra build dependencies.
cargo add timeweb-rsThe crate uses native-tls by default. To use rustls instead:
timeweb-rs = { version = "0.1", default-features = false, features = ["rustls"] }Authentication uses a JWT token issued in the Timeweb Cloud control panel under the "API и Terraform" section.
use timeweb_rs::apis::servers_api;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let token = std::env::var("TIMEWEB_CLOUD_TOKEN")?;
let config = timeweb_rs::authenticated(token);
let servers = servers_api::get_servers(&config, None, None).await?;
println!("{servers:#?}");
Ok(())
}Every operation is a free async function in an apis::*_api module and takes a
reference to [apis::configuration::Configuration] as its first argument.
Build that configuration with timeweb_rs::authenticated.
One module per API area: account_api, ai_agents_api, apps_api,
balancers_api, container_registry_api, databases_api,
dedicated_servers_api, domains_api, firewall_api, floating_ip_api,
images_api, knowledge_bases_api, kubernetes_api, locations_api,
mail_api, network_drives_api, payments_api, projects_api, s3_api,
servers_api, ssh_api, vpc_api.
The generated code is committed. To refresh it after an upstream API update:
- Download the latest spec:
curl -o openapi/timeweb-cloud.json https://timeweb.cloud/api-docs-data/bundle.json
- Normalize it:
python3 openapi/normalize_spec.py openapi/timeweb-cloud.json /tmp/normalized.json
- Generate the client:
npx @openapitools/openapi-generator-cli generate \ -i /tmp/normalized.json -g rust -o /tmp/twgen \ -p packageName=timeweb_client,library=reqwest - Replace
src/apisandsrc/modelswith the freshly generated directories.
openapi/normalize_spec.py is a small, documented pre-processor: it reconciles
path parameters with their route templates (the upstream spec has a few
mismatches that produce non-compiling code) and swaps the Russian API tags for
the English names the spec already carries in x-name-i18n. Request and
response schemas are left untouched.
This project follows Semantic Versioning; changes are
recorded in CHANGELOG.md. Releases are automated with
release-plz: every push to main is analysed, and a
"release" pull request that bumps version in Cargo.toml and updates the
changelog is opened (or refreshed) from the Conventional Commits
in the diff. Merging that PR — or pushing a version bump directly to main —
makes the release job publish the crate to crates.io via crates.io trusted
publishing, push the vX.Y.Z tag and create the matching GitHub release from
the changelog entry. Use feat:/fix:/docs:/refactor: commit prefixes and
! for breaking changes so the version bump and changelog are generated
correctly.