diff --git a/Cargo.toml b/Cargo.toml index e47a5e3..29ce982 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "roboat" readme = "README.md" repository = "https://github.com/Chloe-Woahie/roboat" -version = "0.7.0" +version = "0.7.1" [dependencies] reqwest = { version = "0.11.14", default-features=false, features = ["rustls-tls", "json"] } diff --git a/README.md b/README.md index 082b883..1d8542c 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ and is capable of making requests in parallel. - Take Limited Off Sale - `/v1/assets/{item_id}/resellable-copies/{uaid}` * Users API - [`users.roblox.com/*`] - User Information - `/v1/users/authenticated` +* Presence API - [`presence.roblox.com/*`] + - Register Presence - `/v1/presence/register-app-presence` # Related Crates This crate is a sister crate of [roli](https://crates.io/crates/roli), an API wrapper for [Rolimons.com](https://www.rolimons.com/). diff --git a/src/lib.rs b/src/lib.rs index 5d9a2ea..e115ad5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,6 +17,8 @@ //! * Users API //! - User Details - [`Client::user_id`], [`Client::username`], and [`Client::display_name`] //! (all of them use the same endpoint internally and cache the results) +//! * Presence API +//! - Register Presence - [`Client::register_presence`] #![warn(missing_docs)]