summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 1a40e009148f8c8dd94648f20cb9ee6c7746510e (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "subplot"
version = "0.3.1"
authors = [
  "Lars Wirzenius <liw@liw.fi>",
  "Daniel Silverstone <dsilvers@digital-scurf.org>",
]
edition = "2018"
license = "MIT-0"
description = '''
tools for specifying, documenting,
and implementing automated acceptance tests for systems and software'''
homepage = "https://subplot.liw.fi/"
repository = "https://gitlab.com/subplot/subplot"
default-run = "subplot"

[workspace]
members = [ "subplotlib", "subplotlib-derive", "subplot-build" ]

[features]
default = ["ast_07"]
ast_07 = ["pandoc_ast_07"]
ast_08 = ["pandoc_ast_08"]

[dependencies]
pandoc_ast_07 = { package = "pandoc_ast", version = "0.7", optional = true }
pandoc_ast_08 = { package = "pandoc_ast", version = "0.8", optional = true }
pandoc = "0.8.0"
structopt = "0.3"
base64 = "0.13.0"
roadmap = "0.2"
tempfile = "3.1.0"
tempfile-fast = "0.3.1"
regex = "1"
serde_yaml = "0.8.11"
serde_json = "1.0"
serde = { version = "1.0.101", features = ["derive"] }
serde-aux = "2.1"
chrono = "0.4"
thiserror = "1"
anyhow = "1"
file_diff = "1"
pikchr = "0.1"
lazy_static = "1"
git-testament = "0.2"
tracing = "0.1"
tracing-appender = "0.1"
tracing-subscriber = "0.2"
pulldown-cmark = "0.8.0"

[dependencies.tera]
version = "1"
default-features = true

[build-dependencies]
walkdir = "2"
anyhow = "1"