-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 845 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 845 Bytes
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
[package]
name = "gemma-embedder-rust"
version = "0.1.0"
edition = "2024"
[dependencies]
prost = "0.14.1"
ndarray = "0.16.1"
num_cpus = "1.17.0"
reqwest = { version = "0.12.23", features = ["json"] }
serde = "1.0.225"
tokenizers = { version = "0.21.0", default-features = false, features = ["onig", "esaxx_fast"] }
ort = { version = "2.0.0-rc.10", features = ["std", "download-binaries", "half", "onednn", "ndarray", "cuda"] }
ort-sys= { version = "2.0.0-rc.10"}
serde_json = "1.0.145"
tokio = { version = "1.47.1", features = ["full"] }
tonic = "0.14.2"
tonic-prost = "0.14.2"
tonic-reflection = "0.14.2"
axum = "0.7.5"
hyper = "1.7.0"
hyper-util = { version = "0.1", features = ["tokio"] }
tower = "0.5.2"
[build-dependencies]
tonic = "0.14.2"
tonic-build = "0.14.2"
tonic-prost-build = "0.14.2"
[features]
default = []
cuda = ["ort/cuda"]