Poll room updates and display them

This commit is contained in:
2023-11-02 12:00:40 +01:00
parent e0bc599ce5
commit fda09e0127
4 changed files with 137 additions and 22 deletions

View File

@ -39,6 +39,7 @@ human-panic = "1.2.0"
# Internal
inventory = "0.3"
itertools = "0.11.0"
lazy_static = "1.4.0"
libc = "0.2.148"
log = "0.4.20"
@ -47,7 +48,12 @@ signal-hook = "0.3.17"
smallvec = "1.11.1"
# Matrix
eyeball-im = "0.4.1" # immutable data structures returned by matrix-sdk-ui
imbl = "2.0" # ditto
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "91e7f2f7224b8ada17ab639d60da10dad98aeaf9", features = ["eyre", "markdown"] }
matrix-sdk-ui = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "91e7f2f7224b8ada17ab639d60da10dad98aeaf9" }
#matrix-sdk = { path = "../matrix-rust-sdk/crates/matrix-sdk", features = ["eyre", "markdown"] }
#matrix-sdk-ui = { path = "../matrix-rust-sdk/crates/matrix-sdk-ui" }
# UI
ansi-to-tui = "3.1.0"