From 399b7ace57eb95169887b5da7841f8b75350252e Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 17 Apr 2020 19:30:08 +0200 Subject: [PATCH] Fix ruma-identifiers being declared as an optional dependency --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3fb740be..8d7b0db3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ edition = "2018" http = "0.2.1" percent-encoding = { version = "2.1.0", optional = true } ruma-api-macros = { version = "=0.16.0-rc.1", path = "ruma-api-macros", optional = true } -ruma-identifiers = { version = "0.15.1", optional = true } +ruma-identifiers = "0.15.1" serde = { version = "1.0.106", features = ["derive"], optional = true } serde_json = "1.0.51" serde_urlencoded = "0.6.1" @@ -33,7 +33,6 @@ default = ["with-ruma-api-macros"] with-ruma-api-macros = [ "percent-encoding", "ruma-api-macros", - "ruma-identifiers", "serde", ]