This repository was archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
64 lines (58 loc) · 1.35 KB
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
[package]
name = "arklib"
version = "0.1.0"
edition = "2021"
[lib]
name = "arklib"
crate-type = ["rlib"]
bench = false
[dependencies]
log = { version = "0.4.17", features = ["release_max_level_off"] }
crc32fast = "1.3.2"
walkdir = "2.3.2"
anyhow = "1.0.58"
env_logger = "0.9.0"
lazy_static = "1.4.0"
canonical-path = "2.0.2"
pathdiff = "0.2.1"
image = "0.25"
pdfium-render = { git = "https://github.com/ajrcarey/pdfium-render", rev = "d2559c1", features = [
"thread_safe",
"sync",
] }
libloading = "0.7.3"
serde_json = "1.0.82"
serde = { version = "1.0.138", features = ["derive"] }
serde_with = "3.6.1"
url = { version = "2.2.2", features = ["serde"] }
reqwest = "0.11.11"
scraper = "0.13.0"
zip = "0.6.2"
tokio = { version = "1", features = ["full"] }
itertools = "0.10.5"
once_cell = "1.16.0"
thiserror = "1"
fastrand = "2"
uuid = { version = "1.6.1", features = ["v4"] }
[dev-dependencies]
tempdir = "0.3.7"
rstest = '0.18.2'
# benchmarking
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8"
[build-dependencies]
flate2 = "1.0.24"
fs_extra = "1.2.0"
libloading = "0.7.3"
tar = "0.4.38"
target-lexicon = "0.12.4"
ureq = "2.4.0"
ring = "=0.17.5"
[[bench]]
name = "compute_bytes_benchmark"
harness = false
path = "benches/compute_bytes_benchmark.rs"
[[bench]]
name = "index_build_benchmark"
harness = false
path = "benches/index_build_benchmark.rs"