Files
ratatrix/Cargo.toml
Val Lorentz f3dbd43783
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
[WIP] add support for images
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)`.
2024-02-10 12:13:54 +01:00

103 lines
2.8 KiB
TOML

[package]
name = "ratatrix"
version = "0.1.0"
edition = "2021"
rust-version = "1.73"
description = "A TUI Matrix client designed to be as customisable and ergonomic as an IRC client"
repository = "https://git.tf/val/ratatrix"
authors = ["Val Lorentz"]
license = "AGPL-3.0-only AND MIT"
[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"
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "serde"] }
# CLI
clap = { version = "4.4.5", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] }
# Config
bounded-integer = { version = "0.5.7", features = ["types"] }
config = "0.13.3"
derive_deref = "1.1.1"
directories = "5.0.1"
hostname = "0.3.1"
json5 = "0.4.1"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_path_to_error = "0.1.14"
# TODO: switch to toml_edit to preserve (and write) doc comments
# Error handling
better-panic = "0.3.0"
color-eyre = "0.6.2"
human-panic = "1.2.0"
# Formatting
hex = "0.4.3"
html5ever = "0.26.0"
html-escape = "0.2.13"
markup5ever_rcdom = "0.2.0"
# Internal
enum_dispatch = "0.3.12"
inventory = "0.3"
itertools = "0.11.0"
lazy_static = "1.4.0"
lender = "0.2.1"
libc = "0.2.148"
log = "0.4.20"
memuse = "0.2.1"
nonempty = { version = "0.8.1", features = ["serialize"] }
signal-hook = "0.3.17"
smallvec = "1.11.1"
sorted-vec = "0.8.3"
# Matrix
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 = "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" }
# UI
ansi-to-tui = "3.1.0"
chrono = "0.4.31"
crossterm = { version = "0.27.0", features = ["serde", "event-stream"] }
ratatui = { version = "0.24.0", features = ["serde", "macros"] }
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"
unicode-segmentation = "1.10"
[profile.release]
lto = "thin"