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"] }
|
2024-10-24 18:30:08 -04:00
|
|
|
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"
|
2025-01-30 19:43:25 -05:00
|
|
|
# this revision introduces a way to get the Model back out of the UserModel
|
2025-02-15 09:42:27 -05:00
|
|
|
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"
|
2024-10-26 16:39:13 -04:00
|
|
|
thiserror = "1.0.65"
|
2024-11-02 21:42:17 -04:00
|
|
|
tui-textarea = "0.7.0"
|
2024-11-20 17:33:01 -05:00
|
|
|
tui-prompts = "0.5.0"
|
2025-02-15 09:10:55 -05:00
|
|
|
slice-utils = { git = "https://dev.zaphar.net/zaphar/slice-cursor-rs.git" }
|
2024-11-30 19:43:22 -05:00
|
|
|
serde_json = "1.0.133"
|
2025-01-19 17:57:51 -05:00
|
|
|
colorsys = "0.6.7"
|
2025-02-17 17:43:36 -05:00
|
|
|
tui-markdown = { version = "0.3.1", features = [] }
|