[WIP] images
This commit is contained in:
19
Cargo.toml
19
Cargo.toml
@ -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"
|
||||
|
Reference in New Issue
Block a user