mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
Upgrade Rust SDK to spec 1.14.0
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vrchatapi"
|
||||
version = "1.13.0"
|
||||
version = "1.14.0"
|
||||
authors = ["vrchatapi.lpv0t@aries.fyi"]
|
||||
description = "VRChat API Client for Rust"
|
||||
license = "MIT"
|
||||
|
@ -19,6 +19,8 @@ pub enum InstanceType {
|
||||
Friends,
|
||||
#[serde(rename = "private")]
|
||||
Private,
|
||||
#[serde(rename = "group")]
|
||||
Group,
|
||||
|
||||
}
|
||||
|
||||
@ -29,6 +31,7 @@ impl ToString for InstanceType {
|
||||
Self::Hidden => String::from("hidden"),
|
||||
Self::Friends => String::from("friends"),
|
||||
Self::Private => String::from("private"),
|
||||
Self::Group => String::from("group"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user