forked from Anush008/fastembed-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 1.1 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
[package]
name = "fastembed"
version = "3.2.0"
edition = "2021"
description = "Rust implementation of https://github.com/qdrant/fastembed"
license = "MIT"
authors = ["Anush008 <[email protected]>", "Josh Niemelä <[email protected]>"]
documentation = "https://docs.rs/fastembed"
repository = "https://github.com/Anush008/fastembed-rs"
homepage = "https://crates.io/crates/fastembed"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0" }
hf-hub = {version="0.3", default-features = false, features = ["online"]}
ndarray = { version = "0.15", default-features = false }
ort = { version = "2.0.0-rc.0", default-features = false, features = [ "ndarray" ] }
rayon = { version = "1.7", default-features = false }
serde_json = {version = "1"}
tokenizers = { version = "0.14", default-features = false, features = ["onig"]}
variant_count = "1.1.0"
[dev-dependencies]
ort = "2.0.0-rc.0"
criterion = "0.5.1"
[features]
default = ["ort-download-binaries"]
ort-download-binaries = ["ort/download-binaries"]
[[bench]]
name="embed"
harness = false