1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use std::collections::HashMap;
use ruma_api::ruma_api;
ruma_api! {
metadata {
description: "Get the versions of the client-server API supported by this homeserver.",
method: GET,
name: "api_versions",
path: "/_matrix/client/versions",
rate_limited: false,
requires_authentication: false,
}
request {}
response {
pub versions: Vec<String>,
#[serde(default, skip_serializing_if = "HashMap::is_empty")]
pub unstable_features: HashMap<String, bool>
}
error: crate::Error
}