blob: c85f857a1778b1b2aa8d3913aafed4a8e7407f88 (
plain) (
blame)
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
|
[package]
name = "skaldpress"
version = "2.2.0"
edition = "2021"
default-run = "skaldpress"
[features]
default = ["time", "markdown", "deadlinks", "readline"]
time = ["dep:chrono"]
markdown = ["dep:markdown"]
deadlinks = ["dep:minreq"]
webring = []
guile = []
readline = []
[dependencies]
markdown = { version = "1.0.0-alpha.20", optional = true }
chrono = { version = "0.4.38", optional = true }
minreq = { version = "2.12.0", optional = true, features = ["https", "punycode"] }
#libc = { version = "0.2.167", optional = true }
[[bin]]
name = "skaldpress"
path = "src/skaldpress/main.rs"
# Skaldpress Macro Processor
# Skaldpress Macro Processor (SMP) is a powerful tool in your arsenal, capable of handling all your text processing and macro needs with precision and strength.
[[bin]]
name = "smp"
path = "src/macro_processor/main.rs"
|