Really stop depending on multiple versions of ruma-events (directly)

and also bump some other deps
This commit is contained in:
Jonas Platte 2020-06-05 18:34:37 +02:00
parent eefaa01403
commit f6fb971329
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
2 changed files with 7 additions and 7 deletions

View File

@ -19,11 +19,11 @@ edition = "2018"
http = "0.2.1" http = "0.2.1"
percent-encoding = "2.1.0" percent-encoding = "2.1.0"
ruma-api-macros = { version = "=0.16.1", path = "../ruma-api-macros" } 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" } 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" serde_json = "1.0.53"
strum = "0.18.0" strum = "0.18.0"
[dev-dependencies] [dev-dependencies]
ruma-events = "0.21.1" ruma-events = { git = "https://github.com/ruma/ruma-events", rev = "c1ee72d" }

View File

@ -12,9 +12,9 @@ version = "0.1.0"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
ruma-api = "0.16.0" ruma-api = "0.16.1"
ruma-events = "0.21.0" ruma-events = { git = "https://github.com/ruma/ruma-events", rev = "c1ee72d" }
ruma-identifiers = "0.16.1" ruma-identifiers = "0.16.2"
serde = { version = "1.0.106", features = ["derive"] } serde = { version = "1.0.111", features = ["derive"] }
serde_json = "1.0.52" serde_json = "1.0.52"
url = { version = "2.1.1", features = ["serde"] } url = { version = "2.1.1", features = ["serde"] }