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