-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (40 loc) · 1.21 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
[package]
name = "valentinus"
version = "0.5.3"
edition = "2021"
authors = ["Nigel Christian <nigel.christian@hiahatf.org>"]
documentation = "https://docs.rs/valentinus"
description = "Next generation vector database built with LMDB bindings"
repository = "https://github.com/kn0sys/valentinus"
license = "Apache-2.0"
readme = "README.md"
keywords = [
"nlp",
"deep-learning",
"machine-learning",
"transformers",
"vector-database"
]
categories = ["database"]
[lib]
name = "valentinus"
path = "src/lib.rs"
crate-type = ["lib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "1.3.3"
kn0sys-nn = "0.8.2"
kn0sys-lmdb-rs = "0.1.4"
log = "0.4"
ndarray = { version = "0.16.1", features = ["serde"] }
ort = "2.0.0-rc.8"
regex = "1.10.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.120"
sysinfo = "0.32.0"
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
uuid = { version = "1.10.0", features = [ "v4"] }
[dev-dependencies]
csv = "1.3.0"
env_logger = "0.11.5"
rand = "0.8.5"