-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
39 lines (36 loc) · 997 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
[package]
name = "om-wikiparser"
version = "0.0.0"
license = "AGPL-3.0-only"
edition = "2021"
repository = "https://github.com/organicmaps/wikiparser/"
default-run = "om-wikiparser"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = ["*.sh", "/.github/"]
[dependencies]
anyhow = { version = "1.0.71", features = ["backtrace"] }
clap = { version = "4.3.2", features = ["derive"] }
csv = "1.2.2"
ego-tree = "0.6.2"
html5ever = "0.26.0"
log = "0.4.18"
markup5ever = "0.11.0"
once_cell = "1.18.0"
osmpbf = "0.3.1"
rayon = "1.7.0"
scraper = "0.16.0"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.44"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-logfmt = "0.3.4"
url = "2.3.1"
urlencoding = "2.1.2"
[dev-dependencies]
expect-test = "1.4.1"
unicode-normalization = "0.1.23"
[profile.release]
overflow-checks = true
lto = true
codegen-units = 1