-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (51 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
55 lines (51 loc) · 1.26 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "satoridb"
version = "0.1.2"
edition = "2021"
description = "Embedded vector database for approximate nearest neighbor search (experimental)."
readme = "README.md"
repository = "https://github.com/satoridb/satoridb"
homepage = "https://github.com/satoridb/satoridb"
documentation = "https://docs.rs/satoridb"
license = "MIT"
keywords = ["vector", "ann", "hnsw", "embedding", "database"]
categories = ["database", "algorithms", "data-structures"]
exclude = [
"target/**",
"wal_files/**",
".github/**",
"**/*.bin",
"**/*.bvecs",
"**/*.fvecs",
"**/*.f32bin",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
path = "src/lib.rs"
[dependencies]
glommio = "0.8"
rkyv = { version = "0.7", features = ["validation"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3"
log = "0.4"
async-channel = "2.3"
flate2 = "1.0"
tar = "0.4"
crossbeam-channel = "0.5"
num_cpus = "1.16"
io-uring = "0.6"
memmap2 = "0.9"
rkyv_derive = "0.7"
libc = "0.2"
parking_lot = "0.12"
smallvec = "1.13"
thread_local = "1.1"
async-trait = "0.1.89"
env_logger = "0.11.8"
tempfile = "3.10"
rocksdb = { version = "0.24", default-features = false, features = ["zstd"] }
[profile.release]
debug = true