Initial commit: Rust md_reader

This commit is contained in:
accusys
2026-03-18 20:12:14 +08:00
commit 51e4964a69
1449 changed files with 4433 additions and 0 deletions

14
Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "md_reader"
version = "0.1.0"
edition = "2021"
[dependencies]
pulldown-cmark = { version = "0.10", features = ["html"] }
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
syntect = "5"
[[bin]]
name = "md_reader"
path = "src/main.rs"