sheetsui/Cargo.toml

19 lines
531 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-10-30 14:34:45 -04:00
crossterm = { version = "0.28.1", features = ["event-stream"] }
2024-10-29 09:08:36 -04:00
csvx = "0.1.17"
2024-11-11 19:27:59 -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"
thiserror = "1.0.65"
2024-11-02 21:42:17 -04:00
tui-textarea = "0.7.0"
tui-prompts = "0.5.0"