forked from StractOrg/stract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (70 loc) · 1.85 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
[package]
name = "cuely"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
authors = ['Cuely ApS. <[email protected]>']
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "cuely"
[dependencies]
bincode = "1.3.3"
clap = { version = "3.1.18", features = ["derive"] }
encoding_rs = "0.8.31"
flate2 = "1.0.23"
indicatif = { version = "0.16.2", features = ["rayon"] }
itertools = "0.10.3"
lru = "0.7.6"
rayon = "1.5.3"
reqwest = { version = "0.11.10", features = ["blocking", "stream"] }
serde = "1.0.137"
serde_json = "1.0.81"
tantivy = { git = "https://github.com/quickwit-oss/tantivy.git", rev = "a451f6d60dc4cb751457d11a3cc9d038d9b63713" }
thiserror = "1.0.31"
toml = "0.5.9"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
whatlang = "0.16.0"
tokio = { version = "1.19.2", features = ["full"] }
askama = "0.11.1"
axum = "0.5.9"
anyhow = "1.0.58"
axum-extra = { version = "0.3.4", features = ["spa"] }
html-escape = "0.2.11"
logos = "0.12.1"
csv = "1.1.6"
fst = { version = "0.4.7", features = ["levenshtein"] }
rocksdb = "0.19.0"
image = "0.24.3"
chrono = {version = "0.4.20", features = ["serde"] }
uuid = "1.1.2"
futures = "0.3.21"
quick-xml = "0.23.0"
bzip2 = "0.4.3"
parse_wiki_text = "0.1.5"
md5 = "0.7.0"
memmap = "0.7.0"
once_cell = "1.13.1"
regex = "1.6.0"
http = "0.2.8"
kuchiki = "0.8.1"
tower-http = { version = "0.3.4", features = ["compression-gzip"] }
lalrpop-util = { version = "0.19.8", features = ["lexer"] }
serde_urlencoded = "0.7.1"
rust-stemmers = "1.2.0"
min-max-heap = "1.3.0"
base64 = "0.13.0"
async-trait = "0.1.57"
[dev-dependencies]
criterion = "0.3.6"
maplit = "1.0.2"
[build-dependencies]
lalrpop = { version = "0.19.8", features = ["lexer"] }
[profile.release]
debug = true
[[bench]]
name = "search-preindexed"
harness = false
[[bench]]
name = "search-preindexed-goggle"
harness = false