forked from feather-store/feather
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 749 Bytes
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
[package]
name = "feather-db-cli"
version = "0.6.0"
edition = "2021"
authors = ["Hawky.ai Team <[email protected]>"]
description = "Command-line interface for Feather — embedded vector database + living context engine"
license = "MIT"
repository = "https://github.com/feather-store/feather"
homepage = "https://www.getfeather.store/"
documentation = "https://github.com/feather-store/feather/blob/main/README.md"
readme = "../README.md"
keywords = ["vector", "database", "similarity", "cli", "hnsw"]
categories = ["command-line-utilities", "database"]
[[bin]]
name = "feather"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
ndarray = "0.15"
ndarray-npy = "0.8"
[build-dependencies]
cc = "1.0"