-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 768 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 768 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
[package]
name = "mdbook-svgdx"
version = "0.15.0"
description = "mdbook preprocessor to convert svgdx fenced code blocks into inline SVG images"
authors = ["Ben Bass <benbass@codedstructure.net>"]
repository = "https://github.com/codedstructure/mdbook-svgdx"
keywords = ["mdbook", "svg", "svgdx", "diagrams"]
license = "MIT"
rust-version = "1.88"
edition = "2024"
[dependencies]
clap = { version = "4.5", features = ["string"] }
mdbook-markdown = "0.5.1"
mdbook-preprocessor = "0.5.1"
# The versions of pulldown-cmark / pulldown-cmark-to-cmark are tied to the mdbook library.
pulldown-cmark = "0.13"
pulldown-cmark-to-cmark = "21.0"
semver = "1.0"
serde_json = "1.0"
svgdx = { version = "0.28.0", default-features = false }
[dev-dependencies]
assertables = "9.5.0"