Skip to content

Commit 9c85a1b

Browse files
committed
new binary: syntax conversion helper
1 parent aa9363c commit 9c85a1b

File tree

13 files changed

+978
-12
lines changed

13 files changed

+978
-12
lines changed

Cargo.lock

Lines changed: 138 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[package]
2+
name = "qmd-syntax-helper"
3+
version = "0.1.0"
4+
authors.workspace = true
5+
homepage.workspace = true
6+
keywords.workspace = true
7+
categories.workspace = true
8+
license.workspace = true
9+
repository.workspace = true
10+
edition.workspace = true
11+
12+
[lib]
13+
name = "qmd_syntax_helper"
14+
path = "src/lib.rs"
15+
16+
[[bin]]
17+
name = "qmd-syntax-helper"
18+
path = "src/main.rs"
19+
20+
[dependencies]
21+
clap = { version = "4.5", features = ["derive"] }
22+
anyhow = "1.0"
23+
regex = "1.10"
24+
colored = "2.1"
25+
quarto-markdown-pandoc.workspace = true
26+
include_dir = "0.7"
27+
28+
[lints]
29+
workspace = true

0 commit comments

Comments
 (0)