Fix ruma-identifiers being declared as an optional dependency

This commit is contained in:
Jonas Platte 2020-04-17 19:30:08 +02:00
parent ef4edeb20d
commit 399b7ace57
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -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",
]