[package]
edition = "2021"
name = "feather-db-cli"
version = "0.2.0"
authors = ["Feather DB Contributors <feather-db@example.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for Feather vector database"
homepage = "https://github.com/yourusername/feather-db"
documentation = "https://github.com/yourusername/feather-db/blob/main/USAGE_GUIDE.md"
readme = "README.md"
keywords = [
"vector",
"database",
"similarity",
"cli",
"hnsw",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT"
repository = "https://github.com/yourusername/feather-db"
[lib]
name = "feather_db_cli"
path = "src/lib.rs"
[[bin]]
name = "feather"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ndarray]
version = "0.15"
[dependencies.ndarray-npy]
version = "0.8"
[build-dependencies.cc]
version = "1.0"