-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (32 loc) · 973 Bytes
/
Cargo.toml
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
[package]
name = "literate"
description = "A literate programming tool that extracts code written in your Markdown files."
version = "0.6.0"
authors = ["Miguel D. Salcedo <miguel@salcedo.cc>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/misalcedo/literate-rs"
repository = "https://github.com/misalcedo/literate-rs"
documentation = "https://docs.rs/literate"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[bin]]
name = "literate"
path = "bin/main.rs"
required-features = ["cli"]
[profile.release]
lto = true
debug = true
[features]
default = []
cli = ["anyhow", "clap", "tracing-subscriber", "walk"]
walk =["walkdir"]
[dependencies]
anyhow = { version = "1.0", optional = true }
clap = { version = "4.4", features = ["derive"], optional = true }
pulldown-cmark = "0.9"
regex = "1.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", optional = true }
walkdir = { version = "2.4", optional = true }