forked from deutsche-nationalbibliothek/pica-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (46 loc) · 867 Bytes
/
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
[package]
name = "pica"
version = "0.10.0"
authors = ["Nico Wagner <nwagner84@protonmail.com>"]
edition = "2021"
license = "MIT OR Unlicense"
default-run = "pica"
[dependencies]
atty = "0.2"
bstr = "0.2"
clap = { version = "3.0", features = ["cargo"] }
clap_complete = "3.0"
csv = "1.1"
directories = "4.0"
flate2 = "1.0"
nom = "7.1"
rand = "0.8"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strsim = "0.10"
termcolor = "1.1"
toml = "0.5"
xml-rs = "0.8"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "2.1"
quickcheck = "1.0"
quickcheck_macros = "1.0"
tempfile = "3.2"
[lib]
path = "src/lib.rs"
name = "pica"
[[bin]]
path = "src/bin/pica/main.rs"
name = "pica"
[[example]]
name = "parser"
path = "examples/parser.rs"
test = false
[profile.release]
codegen-units = 1
panic = "abort"
lto = true
[profile.dev]
debug = 0