forked from Anush008/fastembed-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 1.04 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
[package]
name = "fastembed"
version = "2.0.1"
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" }
flate2 = { version = "1.0" }
minreq = { version = "2.10", default-features = false, features = ["https-rustls"] }
ndarray = { version = "0.15", default-features = false }
ort = { version = "2.0.0-alpha.4", default-features = false, features = [ "ndarray", "download-binaries" ] }
rayon = { version = "1.7", default-features = false }
serde_json = {version = "1"}
tar = { version = "0.4", default-features = false }
tokenizers = { version = "0.14", default-features = false, features = ["onig"]}
[dev-dependencies]
ort = "2.0.0-alpha.4"