-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 1017 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
31
[package]
name = "flechasdb"
version = "0.1.0"
edition = "2021"
description = "A lightweight vector database in your hands"
authors = ["Kikuo Emoto <[email protected]>"]
license = "MIT"
repository = "https://github.com/codemonger-io/flechasdb"
homepage = "https://github.com/codemonger-io/flechasdb"
categories = ["vector-database", "vector-search"]
default-run = "flechasdb"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.21"
flate2 = { version = "1.0", default-features = false, features = ["zlib-ng"] }
futures = { version = "0.3", default-features = false, features = ["alloc", "std"] }
pin-project-lite = "0.2"
protobuf = "3.2"
rand = "0.8"
ring = "0.16"
tempfile = "3.8"
tokio = { version = "1.32", features = ["fs", "io-util", "macros", "rt", "rt-multi-thread", "sync"] }
uuid = { version = "1.4", features = ["v4"] }
[build-dependencies]
protobuf-codegen = "3.2"
protoc-bin-vendored = "3.0"