From d2141624d0d5d8f648dd4fed5d56823eb08eb52f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 21 Feb 2020 17:01:34 +0100 Subject: [PATCH] Cargo.toml: Rename the crate. --- Cargo.toml | 8 ++++---- examples/login.rs | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e456397e..969e24a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] authors = ["Damir Jelić Result<(), matrix_nio::Error> { +) -> Result<(), matrix_sdk::Error> { let client_config = AsyncClientConfig::new() .proxy("http://localhost:8080")? .disable_ssl_verification(); @@ -54,7 +54,7 @@ async fn login( } #[tokio::main] -async fn main() -> Result<(), matrix_nio::Error> { +async fn main() -> Result<(), matrix_sdk::Error> { let (homeserver_url, username, password) = match (env::args().nth(1), env::args().nth(2), env::args().nth(3)) { (Some(a), Some(b), Some(c)) => (a, b, c),