1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-17 19:08:52 +02:00

Restore compatibility with Rust 1.53

This commit is contained in:
Jonas Platte 2022-01-13 12:06:20 +01:00
parent f5d1dda766
commit bcf4ede0bc
No known key found for this signature in database
GPG key ID: CC154DE0E30B7C67

View file

@ -1,3 +1,5 @@
use std::{collections::BTreeMap, iter::FromIterator};
use crate::ConduitResult;
use ruma::api::client::unversioned::get_supported_versions;
@ -19,7 +21,7 @@ use rocket::get;
pub async fn get_supported_versions_route() -> ConduitResult<get_supported_versions::Response> {
let resp = get_supported_versions::Response {
versions: vec!["r0.5.0".to_owned(), "r0.6.0".to_owned()],
unstable_features: [("org.matrix.e2e_cross_signing".to_owned(), true)].into(),
unstable_features: BTreeMap::from_iter([("org.matrix.e2e_cross_signing".to_owned(), true)]),
};
Ok(resp.into())