Skip to content

Commit

Permalink
Upgrade Rust SDK to spec 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VRCCat committed Sep 21, 2023
1 parent 0003bf3 commit bda2b4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vrchatapi"
version = "1.13.0"
version = "1.14.0"
authors = ["[email protected]"]
description = "VRChat API Client for Rust"
license = "MIT"
Expand Down
3 changes: 3 additions & 0 deletions src/models/instance_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ pub enum InstanceType {
Friends,
#[serde(rename = "private")]
Private,
#[serde(rename = "group")]
Group,

}

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

0 comments on commit bda2b4c

Please sign in to comment.