Browse Source

fix: avoid illegal instruction crash

see https://github.com/spacejam/sled/issues/1232
merge-requests/38/head
Timo Kösters 5 years ago
parent
commit
7bc58461cd
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
  1. 2
      Cargo.toml

2
Cargo.toml

@ -30,7 +30,7 @@ state-res = { git = "https://github.com/ruma/state-res", branch = "timo-spec-com @@ -30,7 +30,7 @@ state-res = { git = "https://github.com/ruma/state-res", branch = "timo-spec-com
# Used for long polling and federation sender, should be the same as rocket::tokio
tokio = "1.2.0"
# Used for storing data permanently
sled = { version = "0.34.6", default-features = false }
sled = { version = "0.34.6", features = ["no_metrics"] }
# Used for emitting log entries
log = "0.4.14"
# Used for rocket<->ruma conversions

Loading…
Cancel
Save