-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
58 lines (56 loc) · 2.15 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
[workspace]
resolver = "2"
members = ["examples", "summa-core", "summa-proto", "summa-embed-py", "summa-server"]
[profile.release]
lto = true
strip = "debuginfo"
[workspace.dependencies]
anyhow = "1.0"
async-broadcast = "0.7"
async-trait = "0.1"
base64 = "0.22"
bytes = "1.3"
clap = { version = "4.0", features = ["cargo"] }
config = "0.14.0"
derive_builder = "0.20.0"
downcast-rs = "1.2"
fasteval2 = { version = "2.1.1", features = ["unsafe-vars"] }
futures = "0.3"
http-body-util = "0.1"
hyper = { version = "1", default-features = false, features = ["client", "http1", "http2"] }
hyper-tls = { version = "0.6", features = ["vendored"] }
hyper-util = { version = "0.1", features = ["server-graceful"] }
instant = { version = "0.1", default-features = false, features = [ "inaccurate", "wasm-bindgen" ] }
itertools = "0.14"
lazy_static = "1.5"
libz-sys = { version = "1.1", features = ["static"] }
lru = "0.12"
oneshot = "0.1"
openssl = { version = "=0.10.55", features = ["vendored"] }
openssl-src = { version = "=111" }
openssl-sys = { version = "=0.9.89" }
parking_lot = { version = "0.12", features = ["send_guard"] }
pest = "2.7"
pest_derive = "2.7"
prost = "0.13"
rand = { version = "0.8", features = ["small_rng"] }
rayon = "1.10"
regex = "1.11"
serde = { version = "1.0", default-features = false, features = ["derive", "std"] }
serde_bytes = "0.11"
serde_cbor = "0.11"
serde_json = { version = "1.0" }
serde_yaml = { version = "0.8" }
strfmt = "0.2"
summa-proto = { version = "0.36.1", path = "./summa-proto", default-features = false }
take_mut = "0.2"
tantivy = { package = "izihawa-tantivy", version = "0.22.6", default-features = false, features = ["quickwit", "sstable-termdict", "zstd-compression"] }
tantivy-common = { package = "izihawa-tantivy-common", version = "0.7" }
tantivy-query-grammar = { package = "izihawa-tantivy-query-grammar", version = "0.22" }
thiserror = "2.0"
time = { version = "0.3", features = ["serde-well-known", "wasm-bindgen"] }
tokio = { version = "1.43.0", default-features = false }
tonic = { version = "0.12", features = ["gzip"] }
tonic-reflection = "0.12"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }