Files
ratatrix/Cargo.toml
Val Lorentz fe676cacda Make buffers fill from the bottom, and render each paragraph individually
The goal of rendering paragraph individually is to eventually avoid
redrawing everything every time there is a change
2023-11-02 21:45:40 +01:00

79 lines
2.5 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"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Async
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
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"
# 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"
# Internal
inventory = "0.3"
itertools = "0.11.0"
lazy_static = "1.4.0"
lender = "0.2.1"
libc = "0.2.148"
log = "0.4.20"
nonempty = { version = "0.8.1", features = ["serialize"] }
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"
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"
[patch.crates-io]
# we need these changes:
# * 'make widgets::reflow public' https://github.com/ratatui-org/ratatui/pull/607
# * 'define struct WrappedLine instead of anonymous tuple' https://github.com/ratatui-org/ratatui/pull/608
ratatui = { git = "https://github.com/progval/ratatui.git", rev = "54a3923b9d5f37da848dbc32a2ffb4eeb4f47490", features = ["serde", "macros"] }
#ratatui = { path = "../ratatui", features = ["serde", "macros"] }
[dev-dependencies]
pretty_assertions = "1.4.0"
[profile.release]
lto = "thin"