[package]
edition = "2021"
rust-version = "1.83"
name = "velesdb-cli"
version = "1.10.0"
authors = ["Julien Lange <contact@wiscale.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive CLI and REPL for VelesDB with VelesQL support"
homepage = "https://velesdb.com"
documentation = "https://deepwiki.com/cyberlife-coder/VelesDB"
readme = "README.md"
keywords = [
"vector-database",
"cli",
"repl",
"sql",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT"
repository = "https://github.com/cyberlife-coder/velesdb"
[package.metadata.deb]
maintainer = "Julien Lange <contact@wiscale.fr>"
copyright = "2025, Julien Lange (WiScale France)"
license-file = [
"../../LICENSE",
"0",
]
extended-description = """
VelesDB is a high-performance vector database written in Rust.
Features:
- HNSW index with SIMD acceleration
- VelesQL: SQL-like query language
- Interactive REPL
- REST API server
- Sub-millisecond latency"""
section = "database"
priority = "optional"
assets = [
[
"target/release/velesdb",
"usr/bin/",
"755",
],
[
"target/release/velesdb-server",
"usr/bin/",
"755",
],
[
"target/release/velesdb-migrate",
"usr/bin/",
"755",
],
[
"../../README.md",
"usr/share/doc/velesdb/",
"644",
],
[
"../../LICENSE",
"usr/share/doc/velesdb/",
"644",
],
[
"../../docs/reference/ARCHITECTURE.md",
"usr/share/doc/velesdb/",
"644",
],
[
"../../docs/BENCHMARKS.md",
"usr/share/doc/velesdb/",
"644",
],
[
"../../crates/velesdb-migrate/README.md",
"usr/share/doc/velesdb/migrate/",
"644",
],
]
[features]
default = [
"velesdb-core/default",
"update-check",
]
gpu = ["velesdb-core/gpu"]
loom = ["velesdb-core/loom"]
update-check = ["velesdb-core/update-check"]
[[bin]]
name = "velesdb"
path = "src/main.rs"
[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"
[[test]]
name = "e2e_complete"
path = "tests/e2e_complete.rs"
[[test]]
name = "graph_commands_tests"
path = "tests/graph_commands_tests.rs"
[[test]]
name = "phase3_commands_tests"
path = "tests/phase3_commands_tests.rs"
[[test]]
name = "repl_e2e_tests"
path = "tests/repl_e2e_tests.rs"
[[test]]
name = "traverse_stream_tests"
path = "tests/traverse_stream_tests.rs"
[[test]]
name = "velesql_parser_conformance"
path = "tests/velesql_parser_conformance.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4.5"
[dependencies.colored]
version = "2.1"
[dependencies.comfy-table]
version = "7.1"
[dependencies.csv]
version = "1.3"
[dependencies.dirs]
version = "5.0"
[dependencies.ed25519-dalek]
version = "2.1"
[dependencies.indicatif]
version = "0.17"
[dependencies.instant]
version = "0.1"
[dependencies.rustyline]
version = "14.0"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.velesdb-core]
version = "1.10.0"
default-features = false
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.10"
[lints.clippy]
assertions_on_constants = "allow"
cast_lossless = "allow"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
cast_sign_loss = "warn"
collapsible_if = "allow"
derive_partial_eq_without_eq = "allow"
doc_markdown = "allow"
if_not_else = "allow"
implicit_hasher = "allow"
imprecise_flops = "allow"
large_stack_arrays = "allow"
manual_assert = "allow"
manual_let_else = "allow"
match_single_binding = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
non_send_fields_in_send_ty = "warn"
option_if_let_else = "allow"
ptr_as_ptr = "allow"
redundant_clone = "allow"
redundant_pub_crate = "allow"
set_contains_or_insert = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"
single_match_else = "allow"
struct_field_names = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unnecessary_cast = "allow"
unused_async = "allow"
unused_peekable = "allow"
unused_self = "allow"
use_self = "allow"
used_underscore_binding = "allow"
useless_let_if_seq = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]