From bb037a5c42c51567a3b9e41c2c131cef9867a4aa Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 5 Jun 2020 01:43:39 +0200 Subject: [PATCH] Integrate ruma-common --- ruma-common/Cargo.toml | 2 +- ruma/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruma-common/Cargo.toml b/ruma-common/Cargo.toml index 19f2a0ee..0eeb09c1 100644 --- a/ruma-common/Cargo.toml +++ b/ruma-common/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] matches = "0.1.8" -ruma-serde = "0.2.2" +ruma-serde = { version = "0.2.2", path = "../ruma-serde" } serde = { version = "1.0.111", features = ["derive"] } serde_json = { version = "1.0.53", features = ["raw_value"] } strum = { version = "0.18.0", features = ["derive"] } diff --git a/ruma/Cargo.toml b/ruma/Cargo.toml index 66877c5e..ffb5eb72 100644 --- a/ruma/Cargo.toml +++ b/ruma/Cargo.toml @@ -18,7 +18,7 @@ client-api = ["ruma-api", "ruma-client-api", "ruma-events"] federation-api = ["ruma-api", "ruma-federation-api", "ruma-signatures"] [dependencies] -ruma-common = "0.1.3" +ruma-common = { version = "0.1.3", path = "../ruma-common" } ruma-identifiers = "0.16.2" ruma-events = { version = "0.21.3", optional = true }