-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.14 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
33
34
35
36
37
38
39
[package]
name = "db2vec"
version = "0.5.7"
edition = "2024"
authors = ["Thanon Aphithanawat"]
description = "High-performance tool to parse database dumps, generate vector embeddings, and load them into vector databases"
readme = "README.md"
repository = "https://github.com/DevsHero/db2vec"
license = "MIT"
keywords = ["vector-database", "embedding", "ollama", "database-export", "vector-search"]
categories = ["database", "command-line-utilities", "text-processing"]
[dependencies]
redis = "0.29"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
reqwest = { version = "0.11" ,default-features = false, features = ["rustls-tls", "blocking", "json"] }
tokio = { version = "1", features = ["full"] }
uuid = { version = "1", features = ["v4", "rng-getrandom"] }
regex = "1.11"
byteorder = "1.5.0"
base64 = "0.22"
html2text = "0.14"
clap = { version = "4", features = ["derive", "env"] }
dotenvy = "0.15"
log = "0.4"
env_logger = "0.11"
encoding_rs = "0.8"
encoding_rs_io = "0.1"
once_cell = "1"
rayon = "1"
num_cpus = "1"
lazy_static = "1.5"
async-trait = "0.1"
futures = "0.3"
portpicker = "0.1.1"
[dev-dependencies]
db2vec = { path = "." }