-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
30 lines (28 loc) · 862 Bytes
/
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
[package]
edition = "2021"
license = "MIT"
version = "0.1.0"
name = "tinyvector"
readme = "README.md"
categories = ["science", "database-implementations"]
repository = "https://github.com/m1guelpf/tinyvector"
description = "A tiny embedding database in pure Rust."
authors = ["Miguel Piedrafita <[email protected]>"]
keywords = ["database", "nearest-neighbor", "embedding"]
[dependencies]
axum = "0.6.18"
rayon = "1.7.0"
anyhow = "1.0.71"
serde = "1.0.165"
bincode = "1.3.3"
tracing = "0.1.37"
schemars = "0.8.12"
thiserror = "1.0.40"
serde_json = "1.0.99"
lazy_static = "1.4.0"
aide = { version = "0.11.0", features = ["axum"] }
tokio = { version = "1.29.1", features = ["full"] }
axum-jsonschema = { version = "0.6.0", features = ["aide"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[build-dependencies]
chrono = "0.4.26"