summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 365b07b534f39146b87aa6124ce45562dd19b67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "pandoc-docbook"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/minijackson/pandoc-docbook"

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

[dependencies]
clap = "3.0.0-beta.5"
color-eyre = "0.5"
config = { version = "0.11", features = [ "toml" ] }
env_logger = "0.9"
eyre = "0.6"
lazy_static = "1"
log = "0.4"
pandoc = "0.8"
#pandoc_ast = "0.8"
# Needed: https://github.com/oli-obk/pandoc-ast/pull/12
# TODO: change this when new version is released
pandoc_ast = { git = "https://github.com/oli-obk/pandoc-ast", rev = "d73a7d0a065f568d60bcee6cff2340f75065273e" }
serde = { version = "1", features = [ "derive" ] }