Crates.io | rbxcloud |
lib.rs | rbxcloud |
version | 0.14.0 |
source | src |
created_at | 2022-07-28 19:35:08.289658 |
updated_at | 2024-06-30 22:56:31.452087 |
description | CLI and SDK for the Roblox Open Cloud APIs |
homepage | |
repository | https://github.com/Sleitnick/rbxcloud |
max_upload_size | |
id | 634603 |
size | 280,775 |
The rbxcloud
CLI lets developers easily communicate with the Roblox Open Cloud APIs. The underlying library can also be used to build tools and applications that utilize the various APIs.
Possible use-cases:
API v1 | |
---|---|
:white_check_mark: | Assets |
:white_check_mark: | Data Stores |
:white_check_mark: | Messaging |
:white_check_mark: | Place Publishing |
API v2 (Beta) | |
---|---|
:white_check_mark: | Groups |
:white_check_mark: | Universes |
:white_check_mark: | Places |
:x: | Instances |
:white_check_mark: | Subscriptions |
:x: | Inventory |
:white_check_mark: | User Notifications |
:white_check_mark: | User |
:x: | Creator Store |
The goal of this project is to support all API endpoints that Roblox provides.
Run the aftman add
command within your project directory. This will add rbxcloud
to the project's aftman.toml
file (or create one if it doesn't yet exist).
$ aftman add Sleitnick/rbxcloud@0.14.0
Download and unzip the tool for your OS from the releases page. You will then need to put it in your desired location and point your path variable to the executable location.
Visit the documentation site for information on installation and usage: https://sleitnick.github.io/rbxcloud/
The library built for the CLI tool is available to use directly in Rust projects. This is essentially an SDK for the Roblox Open Cloud APIs.
To use rbxcloud
in a Rust project, simply add rbxcloud
to the Cargo.toml
dependency list.
[dependencies]
rbxcloud = "0.14.0"
Alternatively, use cargo add
.
$ cargo add rbxcloud
See the docs.rs page for library documentation.