-
- Downloads
Update ruma and rocket to latest git rev and tokio to 1.0
Ruma updated the event signing validation code and there was a dep resolving failure with serde rocket and tokio so I updated rocket latest and tokio 1.0 to fix.
... | ... | @@ -14,11 +14,11 @@ edition = "2018" |
[dependencies] | ||
# Used to handle requests | ||
# TODO: This can become optional as soon as proper configs are supported | ||
rocket = { git = "https://github.com/SergioBenitez/Rocket.git", rev = "1f1f44f336e5a172361fc1860461bb03667b1ed2", features = ["tls"] } # Used to handle requests | ||
rocket = { git = "https://github.com/SergioBenitez/Rocket.git", rev = "c24f15c18f02319be83af4f3c1951dc220b52c5e", features = ["tls"] } # Used to handle requests | ||
#rocket = { git = "https://github.com/timokoesters/Rocket.git", branch = "empty_parameters", default-features = false, features = ["tls"] } | ||
# Used for matrix spec type definitions and helpers | ||
ruma = { git = "https://github.com/ruma/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks", "unstable-exhaustive-types"], rev = "210b6dd823ba89c5a44c3c9d913d377c4b54c896" } | ||
ruma = { git = "https://github.com/ruma/ruma", features = ["rand", "appservice-api", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks", "unstable-exhaustive-types"], rev = "0635b407290abf5f34d726e1e690c92c07c738e5" } | ||
# ruma = { git = "https://github.com/DevinR528/ruma", features = ["rand", "client-api", "federation-api", "unstable-exhaustive-types", "unstable-pre-spec", "unstable-synapse-quirks"], branch = "verified-export" } | ||
# ruma = { path = "../ruma/ruma", features = ["unstable-exhaustive-types", "rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"] } | ||
... | ... | @@ -29,7 +29,7 @@ state-res = { git = "https://github.com/ruma/state-res", branch = "no-db", featu |
# state-res = { path = "../../state-res", features = ["unstable-pre-spec", "gen-eventid"] } | ||
# Used for long polling and federation sender, should be the same as rocket::tokio | ||
tokio = { version = "0.2.23" } | ||
tokio = { version = "1.0.2", features = ["macros", "time"] } | ||
# Used for storing data permanently | ||
sled = { version = "0.34.6", default-features = false } | ||
# Used for emitting log entries | ||
... | ... |
Please register or sign in to comment