summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 658733e4bdd4bc46cda208b040060a0f9c7fd1d4 (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
[package]
name = "subplot"
version = "0.9.0"
authors = [
  "Lars Wirzenius <liw@liw.fi>",
  "Daniel Silverstone <dsilvers@digital-scurf.org>",
]
edition = "2021"
license = "MIT-0"
description = '''
tools for specifying, documenting,
and implementing automated acceptance tests for systems and software'''
homepage = "https://subplot.tech/"
repository = "https://gitlab.com/subplot/subplot"
default-run = "subplot"
rust-version = "1.70"

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

[dependencies]
anyhow = "1"
base64 = "0.21.0"
clap = { version = "4", features = ["derive", "env", "string"] }
file_diff = "1"
git-testament = "0.2"
lazy_static = "1"
log = "0.4.16"
pikchr = "0.1"
pulldown-cmark = "0.9.0"
regex = "1"
roadmap = "0.5.0"
serde = { version = "1.0.101", features = ["derive"] }
serde-aux = { version = "4.0", default-features = false }
serde_json = "1.0"
serde_yaml = "0.9.21"
tempfile = "3.1.0"
tempfile-fast = "0.3.1"
thiserror = "1"
time = { version = "0.3", features = ["formatting", "macros"] }
env_logger = "0.10.0"
html-escape = "0.2.13"
line-col = "0.2.1"

[dependencies.tera]
version = "1.18"
default-features = false
# Expand out tera's default featurs, except for chrono related ones
features = ["slug", "percent-encoding", "humansize", "rand"]

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