sheetsui/Cargo.toml

24 lines
754 B
TOML
Raw Normal View History

2024-10-23 16:14:18 -04:00
[package]
name = "sheetui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-10-29 09:08:36 -04:00
anyhow = { version = "1.0.91", features = ["backtrace"] }
clap = { version = "4.5.20", features = ["derive"] }
2024-11-30 19:43:22 -05:00
crossterm = { version = "0.28.1", features = ["event-stream", "serde"] }
2024-10-29 09:08:36 -04:00
csvx = "0.1.17"
# this revision introduces a way to get the Model back out of the UserModel
ironcalc = { git = "https://github.com/ironcalc/IronCalc" }
2024-10-30 14:34:45 -04:00
futures = "0.3.31"
2024-10-23 16:14:18 -04:00
ratatui = "0.29.0"
thiserror = "1.0.65"
2024-11-02 21:42:17 -04:00
tui-textarea = "0.7.0"
tui-prompts = "0.5.0"
slice-utils = { git = "https://dev.zaphar.net/zaphar/slice-cursor-rs.git" }
2024-11-22 14:57:08 -05:00
tui-popup = "0.6.0"
2024-11-30 19:43:22 -05:00
serde_json = "1.0.133"
colorsys = "0.6.7"