From f6fb971329a4a5a7faeebf7ea47a86cd19e580f4 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 5 Jun 2020 18:34:37 +0200 Subject: [PATCH] Really stop depending on multiple versions of ruma-events (directly) and also bump some other deps --- ruma-api/Cargo.toml | 6 +++--- ruma-appservice-api/Cargo.toml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruma-api/Cargo.toml b/ruma-api/Cargo.toml index 29e1bd59..56ffca99 100644 --- a/ruma-api/Cargo.toml +++ b/ruma-api/Cargo.toml @@ -19,11 +19,11 @@ edition = "2018" http = "0.2.1" percent-encoding = "2.1.0" ruma-api-macros = { version = "=0.16.1", path = "../ruma-api-macros" } -ruma-identifiers = "0.16.1" +ruma-identifiers = "0.16.2" ruma-serde = { version = "0.2.0", path = "../ruma-serde" } -serde = { version = "1.0.110", features = ["derive"] } +serde = { version = "1.0.111", features = ["derive"] } serde_json = "1.0.53" strum = "0.18.0" [dev-dependencies] -ruma-events = "0.21.1" +ruma-events = { git = "https://github.com/ruma/ruma-events", rev = "c1ee72d" } diff --git a/ruma-appservice-api/Cargo.toml b/ruma-appservice-api/Cargo.toml index 1d4104e9..dab217c9 100644 --- a/ruma-appservice-api/Cargo.toml +++ b/ruma-appservice-api/Cargo.toml @@ -12,9 +12,9 @@ version = "0.1.0" edition = "2018" [dependencies] -ruma-api = "0.16.0" -ruma-events = "0.21.0" -ruma-identifiers = "0.16.1" -serde = { version = "1.0.106", features = ["derive"] } +ruma-api = "0.16.1" +ruma-events = { git = "https://github.com/ruma/ruma-events", rev = "c1ee72d" } +ruma-identifiers = "0.16.2" +serde = { version = "1.0.111", features = ["derive"] } serde_json = "1.0.52" url = { version = "2.1.1", features = ["serde"] }