https://github.com/dtantsur/rust-openstack
OpenStack SDK for Rust
https://github.com/dtantsur/rust-openstack
openstack openstack-clients openstack-sdks rust
Last synced: 5 months ago
JSON representation
OpenStack SDK for Rust
- Host: GitHub
- URL: https://github.com/dtantsur/rust-openstack
- Owner: dtantsur
- License: apache-2.0
- Created: 2017-02-26T18:47:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-05T15:21:33.000Z (8 months ago)
- Last Synced: 2025-05-13T16:52:05.096Z (5 months ago)
- Topics: openstack, openstack-clients, openstack-sdks, rust
- Language: Rust
- Homepage:
- Size: 19.3 MB
- Stars: 71
- Watchers: 7
- Forks: 24
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
OpenStack SDK for Rust
======================
[](https://github.com/dtantsur/rust-openstack/blob/master/LICENSE)
[](https://crates.io/crates/openstack)
[](https://docs.rs/openstack)The goal of this project is to provide a simple API for working with OpenStack
clouds. It is still work-in-progress, some bits are not implemented.## Usage
Use standard [cargo](http://crates.io) tool to build and test. Add a dependency
on `openstack` crate to your software to use this library.### Examples
There is an example that lists all running servers (their ID and name).
Source your Keystone V3 credentials and run:cargo run --example list-servers
Enable verbose logging by using standard `RUST_LOG` variable:
RUST_LOG=openstack cargo run --example list-servers