[[bench]]
harness = false
name = "distance"
path = "benches/distance.rs"
[[bench]]
harness = false
name = "filtered_search"
path = "benches/filtered_search.rs"
[dependencies.bincode]
features = ["serde"]
version = "2"
[dependencies.manifoldb-core]
version = "0.1.3"
[dependencies.manifoldb-storage]
version = "0.1.3"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.wide]
version = "0.7"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.8"
[features]
default = ["simd"]
scalar = []
simd = []
[lib]
name = "manifoldb_vector"
path = "src/lib.rs"
[lints.clippy]
approx_constant = "allow"
bool_assert_comparison = "allow"
bool_to_int_with_if = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "allow"
collapsible_match = "allow"
collection_is_never_read = "allow"
const_is_empty = "allow"
deref_addrof = "allow"
doc_markdown = "allow"
enum_glob_use = "deny"
equatable_if_let = "allow"
expect_used = "allow"
float_cmp = "allow"
if_let_mutex = "allow"
into_iter_without_iter = "allow"
items_after_statements = "allow"
iter_without_into_iter = "allow"
manual_let_else = "allow"
manual_strip = "allow"
manual_while_let_some = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_borrow = "allow"
needless_collect = "allow"
needless_continue = "allow"
needless_pass_by_value = "allow"
needless_range_loop = "allow"
no_effect_underscore_binding = "allow"
only_used_in_recursion = "allow"
option_if_let_else = "allow"
panic = "allow"
redundant_clone = "allow"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
ref_option = "allow"
return_self_not_must_use = "allow"
semicolon_if_nothing_returned = "allow"
should_implement_trait = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
single_match_else = "allow"
suboptimal_flops = "allow"
todo = "warn"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
type_complexity = "allow"
unimplemented = "warn"
uninlined_format_args = "allow"
unnecessary_cast = "allow"
unnecessary_wraps = "allow"
unused_self = "allow"
unwrap_used = "allow"
use_self = "allow"
useless_conversion = "allow"
useless_vec = "allow"
wildcard_imports = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[package]
authors = ["ManifoldDB Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "data-structures"]
description = "Vector storage and similarity search for ManifoldDB"
documentation = "https://docs.rs/manifoldb"
edition = "2021"
homepage = "https://github.com/tomWhiting/manifoldb"
keywords = ["database", "graph", "vector", "embedded", "sql"]
license = "MIT OR Apache-2.0"
name = "manifoldb-vector"
readme = false
repository = "https://github.com/tomWhiting/manifoldb"
rust-version = "1.75"
version = "0.1.3"
[[test]]
name = "pq_integration"
path = "tests/pq_integration.rs"