From d964a5cd3a603b376356da39a5240467c5e464d4 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sat, 19 Feb 2022 00:55:35 +0100 Subject: [PATCH] examples: Clean up joke_bot dependencies --- examples/joke_bot/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/joke_bot/Cargo.toml b/examples/joke_bot/Cargo.toml index 0c9392cb..cb5824c3 100644 --- a/examples/joke_bot/Cargo.toml +++ b/examples/joke_bot/Cargo.toml @@ -6,12 +6,10 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -ruma = { version = "0.4.0", path = "../../crates/ruma", features = ["client-api-c", "client", "client-hyper-native-tls", "events", "rand"] } -ruma-client = { version = "0.7.0", path = "../../crates/ruma-client", features = ["client-api"]} +ruma = { version = "0.4.0", path = "../../crates/ruma", features = ["client", "client-api-c", "client-ext-client-api", "client-hyper-native-tls", "events", "rand"] } # For building locally: use the git dependencies below. # Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d # ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] } -# ruma-client = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api"] } futures-util = { version = "0.3.21", default-features = false, features = ["std"] } http = "0.2.2"