summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 30b051c018d4c9513d61b5cd13c2b28afee37825 (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
[package]
name = "skaldpress"
version = "0.1.0"
edition = "2021"
default-run = "skaldpress"

[features]
default = ["time", "markdown"]
time = ["dep:chrono"]
markdown = ["dep:markdown"]

[dependencies]
markdown = { version = "1.0.0-alpha.20", optional = true }
chrono = { version = "0.4.38", 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"