7 releases (stable)

2023.9.4 Sep 12, 2023
2023.6.13 Jun 14, 2023
2023.5.23 May 23, 2023
2023.5.19 May 19, 2023
2023.4.25 Apr 25, 2023

#678 in Database interfaces

Download history 13/week @ 2024-02-19 35/week @ 2024-02-26 9/week @ 2024-03-04 32/week @ 2024-03-11 6/week @ 2024-03-18 4/week @ 2024-03-25

51 downloads per month
Used in ydb-unofficial

MIT license

6.5MB
127K SLoC

yandex-cloud-rs

Client library for Yandex Cloud gRPC APIs, as published in their GitHub repository.

Please see the online documentation for user-facing information, this README is intended for library developers.

The source code of the library lives in the TVL repository.


In order to build this library, the gRPC API definitions need to be fetched from GitHub. By default this is done by Nix (see default.nix), which then injects the location of the API definitions through the YANDEX_CLOUD_PROTOS environment variable.

The actual code generation happens through the calls in build.rs.

Releases of this library are done from dirty trees, meaning that the version on crates.io should already contain all the generated code. In order to do this, after bumping the version in Cargo.toml and the API commit in default.nix, the following release procedure should be used:

# Get rid of all generated source files
find src | grep '.rs$' | grep -v '^src/lib.rs$' | xargs rm

# Get rid of all old artefacts
cargo clean

# Verify that a clean build works as intended
cargo build

# Verify that all documentation builds, and verify that it looks fine:
#
# - Is the version correct (current date)?
# - Are all the services included (i.e. not an accidental empty build)?
cargo doc --open

# If everything looks fine, release:
cargo publish --allow-dirty

Dependencies

~13–24MB
~422K SLoC