Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Process rooms' read status client-side #2953

Merged
merged 10 commits into from
Dec 21, 2023
6 changes: 6 additions & 0 deletions crates/matrix-sdk-base/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@ mod error;
pub mod latest_event;
pub mod media;
mod rooms;

#[cfg(feature = "experimental-sliding-sync")]
mod read_receipts;
#[cfg(feature = "experimental-sliding-sync")]
pub use read_receipts::PreviousEventsProvider;
#[cfg(feature = "experimental-sliding-sync")]
mod sliding_sync;

pub mod store;
pub mod sync;
mod utils;
Expand Down
Loading