[WIP] add support for images
Some checks failed
CI / lint (push) Failing after 1m14s
CI / Build and test (, 1.73.0) (push) Failing after 47s
CI / Build and test (, beta) (push) Failing after 42s
CI / Build and test (, nightly) (push) Failing after 42s

this crashes because decode_image calls
`client.media().get_file(content, /* use_cache */ true).await` which
then causes `poll_updates` to be called again while this `poll_updates`
is still running, causing inconsistent updates when doing
`.apply(&mut self.items)`.
This commit is contained in:
2024-02-10 12:13:46 +01:00
parent 115679d50d
commit f3dbd43783
8 changed files with 173 additions and 12 deletions

View File

@ -8,11 +8,19 @@ repository = "https://git.tf/val/ratatrix"
authors = ["Val Lorentz"]
license = "AGPL-3.0-only AND MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [
"images",
]
images = [
"dep:image",
"dep:ratatui-image",
]
[dependencies]
# Async
async-std = { version = "1.12.0", features = ["tokio1", "attributes"] }
futures = "0.3.28"
tokio = { version = "1.32.0", features = ["full"] }
tokio-util = "0.7.9"
@ -64,8 +72,8 @@ sorted-vec = "0.8.3"
eyeball = "0.8.7" # data structures observer returned by matrix-sdk-ui
eyeball-im = "0.4.2" # immutable data structures observer returned by matrix-sdk-ui
imbl = "2.0" # ditto
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "5c37acb81ce624d83be54b5140cd60399b556fb2", features = ["eyre", "markdown"] }
matrix-sdk-ui = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "5c37acb81ce624d83be54b5140cd60399b556fb2" }
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "7bbd07cc7703051e5276b87f26bf88b6239d64a4", features = ["eyre", "markdown"] }
matrix-sdk-ui = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", rev = "7bbd07cc7703051e5276b87f26bf88b6239d64a4" }
#matrix-sdk = { path = "../matrix-rust-sdk/crates/matrix-sdk", features = ["eyre", "markdown"] }
#matrix-sdk-ui = { path = "../matrix-rust-sdk/crates/matrix-sdk-ui" }
@ -78,8 +86,13 @@ strip-ansi-escapes = "0.2.0"
tui-textarea = "0.3.0"
unicode-width = "0.1"
# UI (images)
ratatui-image = { version = "0.8.0", optional = true }
image = { version = "0.24.8", optional = true }
[patch.crates-io]
#ratatui = { path = "../ratatui", features = ["serde", "macros"] }
eyeball-im = { path = "../eyeball/eyeball-im" }
[dev-dependencies]
pretty_assertions = "1.4.0"