-
- Downloads
fix: set limited to true when skipping messages in /sync
Showing
- Cargo.lock 13 additions, 0 deletionsCargo.lock
- Cargo.toml 2 additions, 2 deletionsCargo.toml
- src/client_server/search.rs 3 additions, 3 deletionssrc/client_server/search.rs
- src/client_server/sync.rs 3 additions, 2 deletionssrc/client_server/sync.rs
- src/database/rooms.rs 3 additions, 3 deletionssrc/database/rooms.rs
... | ... | @@ -17,8 +17,8 @@ edition = "2018" |
rocket = { git = "https://github.com/timokoesters/Rocket.git", branch = "empty_parameters", features = ["tls"] } | ||
#ruma = { git = "https://github.com/ruma/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"], rev = "987d48666cf166cf12100b5dbc61b5e3385c4014" } # Used for matrix spec type definitions and helpers | ||
#ruma = { git = "https://github.com/timokoesters/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"], branch = "timo-fixes" } # Used for matrix spec type definitions and helpers | ||
ruma = { path = "../ruma/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"] } | ||
ruma = { git = "https://github.com/timokoesters/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"], branch = "timo-fixes" } # Used for matrix spec type definitions and helpers | ||
#ruma = { path = "../ruma/ruma", features = ["rand", "client-api", "federation-api", "unstable-pre-spec", "unstable-synapse-quirks"] } | ||
tokio = "0.2.22" # Used for long polling | ||
sled = "0.32.0" # Used for storing data permanently | ||
log = "0.4.8" # Used for emitting log entries | ||
... | ... |
Please register or sign in to comment