forked from Anush008/fastembed-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 1.1 KB
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 = "fastembed"
version = "3.6.0"
edition = "2021"
description = "Rust implementation of https://github.com/qdrant/fastembed"
license = "Apache-2.0"
authors = ["Anush008 <anushshetty90@gmail.com>", "Josh Niemelä <josh@jniemela.dk>", "GrisiaEvy <a115020115@gmail.com>"]
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" }
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.10", default-features = false }
serde_json = {version = "1"}
tokenizers = { version = "0.19", default-features = false, features = ["onig"]}
[dev-dependencies]
criterion = "0.5.1"
[features]
default = ["ort-download-binaries"]
ort-download-binaries = ["ort/download-binaries"]
[[bench]]
name="embed"
harness = false