7622d41496
- Add pulldown-cmark 0.13.1, syntect 5.3 (default-fancy), syntect-tui 3.0 to Cargo.toml - Create src/vault.rs with VaultDocument enum (Loaded/Missing/ReadError variants) - Implement load_document() using std::fs::read_to_string with structured error mapping - cargo check passes with all new dependencies resolved
15 lines
366 B
TOML
15 lines
366 B
TOML
[package]
|
|
name = "bbs-md"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ratatui = "0.30.0"
|
|
signal-hook = "0.4.3"
|
|
toml = "1.0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
pulldown-cmark = "0.13.1"
|
|
syntect = { version = "5.3", default-features = false, features = ["default-fancy"] }
|
|
syntect-tui = "3.0"
|