diff --git a/Cargo.toml b/Cargo.toml index 745e847c..b416446d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,39 +13,23 @@ repository = "https://github.com/ruma/ruma-client" version = "0.2.0" [dependencies] -futures-preview = "0.3.0-alpha.18" +futures-preview = "0.3.0-alpha.19" http = "0.1.18" hyper = { version = "0.13.0-alpha.4", features = ["unstable-stream"] } +hyper-tls = { version = "0.4.0-alpha.4", optional = true } ruma-api = "0.10.0" -ruma-client-api = { git = "https://github.com/ruma/ruma-client-api" } +ruma-client-api = { git = "https://github.com/ruma/ruma-client-api", branch = "event-result" } +ruma-events = { git = "https://github.com/ruma/ruma-events", branch = "event-result-2" } ruma-identifiers = "0.14.0" -serde_json = "1.0.40" +native-tls = { version = "0.2.3", optional = true } +serde = { version = "1.0.101", features = ["derive"] } +serde_json = "1.0.41" serde_urlencoded = "0.6.1" url = "2.1.0" -[dependencies.hyper-tls] -optional = true -version = "0.4.0-alpha.4" - -[dependencies.native-tls] -optional = true -version = "0.2.3" - -[dependencies.ruma-events] -git = "https://github.com/ruma/ruma-events" -rev = "1b0be0d0e7fa1040fc51b748256b290e24677b19" - -[dependencies.serde] -version = "1.0.101" -features = ["derive"] - [dev-dependencies] tokio = "0.2.0-alpha.6" [features] default = ["tls"] tls = ["hyper-tls", "native-tls"] - -[patch.crates-io.ruma-events] -git = "https://github.com/ruma/ruma-events" -rev = "1b0be0d0e7fa1040fc51b748256b290e24677b19"