-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (47 loc) · 1.16 KB
/
Cargo.toml
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
[workspace]
members = ["hun_law_grammar"]
[package]
name = "hun_law"
version = "0.1.0"
edition = "2021"
authors = ["Alex Badics <[email protected]>"]
license = "GPL-3.0-only"
autotests = false
[dependencies]
anyhow = "1.0"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
clap = { version = "3.1", features = ["derive"] }
csv = "1.1"
derive-visitor = { version = "0.2.1", features = ["std-types-drive"] }
env_logger = "0.9.0"
euclid = "0.22.7"
from_variants = "1.0"
hun_law_grammar = { path = "hun_law_grammar" }
lazy-regex = "2.3"
log = "0.4.14"
pdf = { version = "0.8.1", features= ["euclid"] }
pdf_encoding = "0.3"
phf = "0.11"
regex = "1"
roman = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.11"
tempfile = "3"
textwrap = { version = "0.15.0", default-features = false }
ureq = "2.4"
[dev-dependencies]
colored = "2.0"
datatest-stable = "0.1.2"
pretty_assertions = "1"
similar = { version = "2.2" , features = ["inline"] }
[build-dependencies]
phf_codegen = "0.11"
[profile.release]
debug = true
incremental = true
[[test]]
name = "run_simple_tests"
[[test]]
harness = false
name = "run_datatests"