-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (53 loc) · 1.79 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
[package]
name = "dawnsearch"
description = "An open source distributed web search engine that searches by meaning."
version = "0.2.0"
edition = "2021"
default-run = "dawnsearch"
homepage = "https://dawnsearch.org/"
repository = "https://github.com/dawn-search/dawnsearch"
license = "AGPL-3.0-or-later"
authors = ["Gerard Krol"]
[features]
default = ["upnp"]
s3 = ["aws-config", "aws-sdk-s3"]
upnp = ["igd", "network-interface"]
cuda = ["candle/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
[lib]
[dependencies]
flate2 = "1.0.26"
url = "2.4.0"
whichlang = "0.1.0"
indicatif = "0.17.5"
readability = "0.2.0"
anyhow = { version = "1.0.72" }
html5ever = "0.25"
markup5ever_rcdom = "0.1"
rand = "0.8.5"
num = "0.4.1"
usearch = "0.22.3"
tokio = { version = "1.29.1", features = ["full"]}
urlencoding = "2.1.3"
cxx = "1.0.102"
html-escape = "0.2.13"
reqwest = "0.11.18"
aws-config = { version = "0.55.3", optional = true }
aws-sdk-s3 = { version = "0.28.0", optional = true }
tokio-util = { version = "0.7.8", features = ["io", "io-util"] }
rusqlite = { version = "0.29.0", features = ["bundled"] }
serde = "1.0.180"
rmp-serde = "1.1.2"
rmp = "0.8.12"
serde_bytes = "0.11.12"
igd = { version = "0.12.1", optional = true }
network-interface = { version = "1.0.1", optional = true }
smaz = "0.1.0"
openssl = { version = "0.10", features = ["vendored"] }
config = { version ="0.13.3", features = ["toml"] }
candle = { git = "https://github.com/huggingface/candle.git", rev = "eab54e44", package = "candle-core" }
candle-nn = { git = "https://github.com/huggingface/candle.git", rev = "eab54e44", package = "candle-nn" }
hf-hub = "0.2.0"
tokenizers = "0.13.3"
tracing = "0.1.37"
serde_json = "1.0.104"
candle-transformers = { git = "https://github.com/huggingface/candle.git", rev = "eab54e44", package = "candle-transformers" }