Upgrade Rust SDK to spec 1.14.0

This commit is contained in:
VRCCat
2023-09-21 04:43:45 +00:00
parent 0003bf34fe
commit bda2b4c735
2 changed files with 4 additions and 1 deletions

View File

@ -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"

View File

@ -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"),
}
}
}