woof woof

Signed-off-by: girlbossceo <june@girlboss.ceo>
This commit is contained in:
girlbossceo 2023-08-11 17:35:57 +00:00
parent 84338cc827
commit 76c00283de
3 changed files with 348 additions and 367 deletions

709
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,12 +1,12 @@
[package] [package]
name = "conduit" name = "cowonduit"
description = "A Matrix homeserver written in Rust" description = "A Matrix homeserver written in Rust"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["timokoesters <timo@koesters.xyz>"] authors = ["timokoesters <timo@koesters.xyz>"]
homepage = "https://conduit.rs" homepage = "https://conduit.rs"
repository = "https://gitlab.com/famedly/conduit" repository = "https://gitlab.com/famedly/conduit"
readme = "README.md" readme = "README.md"
version = "0.7.0-alpha" version = "4.2.0-6.9-barkbarkbark"
edition = "2021" edition = "2021"
# When changing this, make sure to update the `flake.lock` file by running # When changing this, make sure to update the `flake.lock` file by running

View file

@ -544,7 +544,7 @@ pub async fn get_server_version_route(
Ok(get_server_version::v1::Response { Ok(get_server_version::v1::Response {
server: Some(get_server_version::v1::Server { server: Some(get_server_version::v1::Server {
name: Some("Conduit".to_owned()), name: Some("cowonduit".to_owned()),
version: Some(env!("CARGO_PKG_VERSION").to_owned()), version: Some(env!("CARGO_PKG_VERSION").to_owned()),
}), }),
}) })