-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "excel-cli"
version = "1.3.0"
edition = "2021"
description = "Excel CLI for AI, scripting, and terminal users. Headless JSON API for automation, plus a Vim-like TUI for interactive browsing and editing."
license = "MIT"
repository = "https://github.com/fuhan666/excel-cli"
keywords = ["excel", "cli", "ai", "tui", "spreadsheet"]
categories = ["command-line-interface", "command-line-utilities", "development-tools", "parsing"]
exclude = ["/.tests", "/.github", "AGENTS.md", "CHANGELOG.md", ".gitignore"]
[dependencies]
ratatui = "0.24.0"
crossterm = "0.27.0"
calamine = "0.27.0"
anyhow = "1.0.79"
clap = { version = "4.5.0", features = ["derive"] }
rust_xlsxwriter = "0.86.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"
indexmap = { version = "2.0", features = ["serde"] }
tui-textarea = "0.4.0"
quick-xml = "0.37.5"
zip = "2.5.0"
regex = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true