-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 836 Bytes
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
[package]
name = "mdslw"
version = "0.17.1"
edition = "2024"
[profile.release]
# Optimize release binaries.
strip = true
lto = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1", features = ["std", "backtrace"] }
clap = { version = "4", features = ["env", "derive"] }
clap_complete = "4"
ignore = "0.4"
include_dir = "0.7"
log = { version = "0.4", features = ["std"] }
pulldown-cmark = { version = "0.13", default-features = false }
rayon = "1"
similar = "2"
tempfile = "3"
serde = { version = "1", features = ["derive"] }
toml = { version = "1", default-features = false, features = ["parse", "display", "serde"] }
[build-dependencies]
reqwest = {version = "0.13", features = ["default", "json", "blocking"]}
serde_json = { version = "1" }