-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (75 loc) · 2.1 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
[workspace]
resolver = "2"
members = [
"crates/fetch-sfs",
"crates/sfs-preprocess",
"crates/minidom-extension",
"crates/opendata-spiders",
"crates/preprocessors",
"crates/sparv-extension",
"crates/swegov-opendata",
"crates/swegov-opendata-preprocess",
]
[workspace.package]
rust-version = "1.74"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = [
"Språkbanken Text <[email protected]>",
"Kristoffer Andersson <[email protected]>",
]
[workspace.dependencies]
# local crates
minidom-extension = { path = "./crates/minidom-extension" }
opendata-spiders = { path = "./crates/opendata-spiders" }
preprocessors = { path = "./crates/preprocessors" }
sparv-extension = { path = "./crates/sparv-extension" }
swegov-opendata = { path = "./crates/swegov-opendata" }
swegov-opendata-preprocess = { path = "./crates/swegov-opendata-preprocess" }
# external crates
anyhow = "1.0.73"
async-trait = "0.1.82"
chrono = "0.4.37"
clap = { version = "4.4.11" }
config = "0.13.3"
deserx = { git = "https://github.com/kod-kristoff/deserx" }
error-stack = "0.4.1"
flate2 = "1.0.27"
futures = "0.3.28"
futures-core = "0.3"
html5ever = "0.22.5"
itertools = "0.11.0"
memchr = "2"
miette = "7.2.0"
minidom = "0.15.2"
minidom-14 = "0.16.0"
once_cell = "1.18.0"
pretty_assertions = "1.4.0"
proc-macro2 = "1"
prodash = { version = "26.2.2" }
quick-xml = "0.28.2"
quote = "1"
rand_core = { version = "0.6", default-features = false }
regex = "1.9.5"
regex-automata = { version = "0.4", default-features = false }
regex-syntax = "0.8"
reqwest = { version = "0.11.17", default-features = false }
rstest = "0.18.2"
serde = { version = "1.0.210" }
serde-aux = "4.2.0"
serde_json = "1.0.128"
serde_with = "3.0.0"
serde_yaml = "0.9.27"
smallvec = { version = "1", default-features = false }
soup = "0.5.1"
syn = "2"
thiserror = "1.0.64"
tokio = "1.40.0"
tokio-stream = "0.1.14"
tracing = "0.1.40"
tracing-core = "0.1"
tracing-forest = "0.1.6"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
ulid = "1.0.0"
webcrawler = { git = "https://github.com/spraakbanken/webcrawler-rs" }
zip = "0.6.6"