-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (45 loc) · 1.43 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "tshts"
version = "0.2.1"
edition = "2024"
description = "Terminal spreadsheet with Excel-equivalent formula language"
license = "MIT"
[[bin]]
name = "tshts"
path = "src/main.rs"
[lib]
name = "tshts"
path = "src/lib.rs"
[dependencies]
ratatui = "0.30"
crossterm = "0.29"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.3"
reqwest = { version = "0.13", features = ["blocking"] }
arboard = "3"
unicode-width = "0.2"
regex = "1"
calamine = "0.35"
zip = { version = "2", default-features = false, features = ["deflate"] }
# SIGTERM / SIGHUP handler — flips an AtomicBool the main loop polls so we
# can flush the autosave worker before exit instead of letting logout/
# shutdown drop queued writes.
signal-hook = "0.4"
# Work-stealing parallel iterator. Used by `ParallelExecutor` to run
# per-level cell evaluation across multiple cores. We use `par_iter`
# with `with_min_len(K)` rather than per-cell tasks because the
# ~400ns dispatch overhead exceeds typical formula-eval cost — see
# research/dag-scheduling/granularity.md for the measured breakeven.
rayon = "1"
[dev-dependencies]
tempfile = "3.0"
# PTY end-to-end test harness. portable-pty spawns the real binary in a
# pseudo-tty; vt100 parses the escape sequences back into a virtual screen
# we can assert against. Used by tests/pty_*.rs.
portable-pty = "0.9"
vt100 = "0.16"
[[bench]]
name = "calc_engine"
path = "benches/calc_engine.rs"
harness = false