-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
101 lines (94 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
authors = [
"Thomas Krause <[email protected]>",
"Martin Klotz <[email protected]>",
]
description = "Converts linguistic data formats based on the graphANNIS data model as intermediate representation and can apply consistency tests."
edition = "2018"
homepage = "https://github.com/korpling/annatto/"
license = "Apache-2.0"
name = "annatto"
repository = "https://github.com/korpling/annatto/"
version = "0.18.0"
[dependencies]
ansi_term = "0.12"
anyhow = "1.0"
bimap = "0.6.3"
clap = {version = "4.0", features = ["derive", "env"]}
console = "0.15"
csv = "1.3"
documented = "0.3.0"
encoding_rs = "0.8"
encoding_rs_io = "0.1.7"
glob = "0.3"
graphannis = "3.5"
graphannis-core = "3.5"
graphviz-rust = "0.9.0"
indicatif = "0.17"
itertools = "0.12"
lazy_static = "1.4.0"
linked-hash-map = "0.5.6"
linked_hash_set = "0.1.4"
log = "0.4"
normpath = "1.1"
ordered-float = {version = "4.1", default-features = false}
pathdiff = "0.2"
percent-encoding = "2.3.1"
pest = "2.7"
pest_derive = "2.0"
quick-xml = "0.34"
rayon = "1.1"
regex = "1.10"
roxmltree = "0.20.0"
serde = "1.0"
serde_derive = "1.0"
struct-field-names-as-array = "0.3.0"
strum = {version = "0.26.2", features = ["derive"]}
tabled = {version = "0.15", features = ["ansi"]}
tempfile = "3"
termimad = "0.30"
text-splitter = "0.6.3"
thiserror = "1.0"
toml = "0.8.0"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
umya-spreadsheet = "2.0.1"
url = "2.5.2"
xml-rs = "0.8"
zip = "0.6.6"
[dev-dependencies]
assert_cmd = "2.0.11"
insta = {version = "1.26.0", features = ["toml", "filters"]}
pretty_assertions = "1.3"
# Compile some of the dependencies in release mode if when we are ourself in
# "dev" mode (like building debug binaries or running tests)
[profile.dev.package]
graphannis-core.opt-level = 3
graphannis.opt-level = 3
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
panic = 'abort'
[profile.dev]
panic = 'abort'
# generated by 'cargo dist init'
[profile.dist]
debug = true
inherits = "release"
split-debuginfo = "packed"
# Config for 'cargo dist'
[workspace.metadata.dist]
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.16.0"
# Publish jobs to run in CI
pr-run-mode = "plan"