forked from xaynetwork/xayn_discovery_engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (47 loc) · 1.45 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
[workspace]
members = [
"bert",
"coi",
"integration-tests",
"snippet-extractor",
"summarizer",
"test-utils",
"web-api",
"web-api-db-ctrl",
"web-api-shared",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
rust-version = "1.68.0"
license = "AGPL-3.0-only"
[workspace.dependencies]
anyhow = "1.0.71"
async-trait = "0.1.68"
base64 = "0.21.2"
cfg-if = "1.0.0"
chrono = { version = "0.4.26", default-features = false, features = ["clock", "serde", "std"] }
criterion = "0.5.1"
csv = "1.2.2"
derive_more = { version = "0.99.17", default-features = false, features = ["as_ref", "deref", "deref_mut", "display", "from", "into"] }
displaydoc = "0.2.4"
figment = { version = "0.10.10", features = ["toml"] }
futures-util = "0.3.28"
itertools = "0.10.5"
ndarray = "0.15.6"
once_cell = "1.18.0"
rand = "0.8.5"
regex = "1.8.4"
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] }
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
sqlx = { version = "0.6.3", features = ["postgres", "runtime-tokio-rustls"] }
thiserror = "1.0.40"
tokio = { version = "1.28.2", default-features = false }
toml = "0.7.4"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
url = { version = "2.4.0", features = ["serde"] }
uuid = { version = "1.3.4", features = ["serde", "v4"] }
num_cpus = "1.16.0"