summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 39470aa57ddd131a13da52a86561aeb53e4ea920 (plain)
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 = "pandoc-filter-diagram"
version = "0.1.1"
edition = "2018"
authors = [
  "Lars Wirzenius <liw@liw.fi>",
  "Daniel Silverstone <dsilvers@digital-scurf.org>",
]
license = "MIT-0"
description = '''render diagram markup in a Pandoc abstract syntax tree as SVG'''
repository = "https://gitlab.com/larswirzenius/pandoc-filter-diagram"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.50"
base64 = "0.13.0"
pandoc_ast = "0.8.0"
pikchr = "0.1.1"
roadmap = "0.3.0"
serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.72"
thiserror = "1.0.30"