mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
b1738f555e
Changes made: - updated `frame.set_cursor()` to `frame.set_cursor_position()`, since `set_cursor` is [deprecated](https://github.com/ratatui/ratatui/blob/main/BREAKING-CHANGES.md\#backend-trait-migrates-to-getset_cursor_position-1284) - updated `frame.size()` to `frame.area()`, since `size` is [deprecated and renamed](https://github.com/ratatui/ratatui/blob/main/BREAKING-CHANGES.md\#framesize-is-deprecated-and-renamed-to-framearea) - performed a clean build to avoid any possible issues
37 lines
612 B
TOML
37 lines
612 B
TOML
[package]
|
|
name = "tui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.16", features = ["derive"] }
|
|
crossterm = "0.28.1"
|
|
ego-tree = "0.6.2"
|
|
oneshot = "0.1.8"
|
|
portable-pty = "0.8.1"
|
|
ratatui = "0.28.1"
|
|
tui-term = "0.1.12"
|
|
include_dir = "0.7.4"
|
|
tempdir = "0.3.7"
|
|
serde = { version = "1.0.205", features = ["derive"] }
|
|
toml = "0.8.19"
|
|
which = "6.0.3"
|
|
unicode-width = "0.1.13"
|
|
|
|
[build-dependencies]
|
|
chrono = "0.4.33"
|
|
|
|
[[bin]]
|
|
name = "linutil"
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
incremental = false |