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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[]
= "ordvec"
= "0.5.0"
= "2021"
= "1.89" # AVX-512 intrinsics stabilized in 1.89.0; also clears the 1.87 floor from u64::is_multiple_of
= "Training-free ordinal & sign quantization for vector retrieval"
= "MIT OR Apache-2.0"
= "https://github.com/Project-Navi/ordvec"
= "https://github.com/Project-Navi/ordvec"
= "https://docs.rs/ordvec"
= "README.md"
= ["vector-search", "quantization", "nearest-neighbor", "ann", "simd"]
= ["algorithms", "science", "compression"]
# Keep dev/internal files out of the published crate — they stay in the repo
# but aren't useful to crate consumers.
= [
".agents/",
".claude/",
".codex/",
".github/",
".gitignore",
".playwright-mcp/",
# The BEIR harness + figures + its bench crate are dev tooling — not shipped
# in the published crate. (benchmarks/rank_modes_results.txt stays IN the
# package: the README links it and the release-publish invariant requires it.)
"benchmarks/beir/",
"benchmarks/beir-bench/",
"CLAUDE.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"DCO",
"GOVERNANCE.md",
"RELEASING.md",
"ROADMAP.md",
"SECURITY.md",
"cliff.toml",
"THREAT_MODEL.md",
"codecov.yml",
"deny.toml",
"docs/ALTERNATIVES_CONSIDERED.md",
"docs/FOLLOWUP_BODY_KERNEL_TIE_BREAK.md",
"docs/INDEX_PROVENANCE.md",
"docs/c-api.md",
"experiments/",
"fuzz/",
"ordvec-ffi/",
"ordvec-go/",
"ordvec-manifest/",
"ordvec-manifest-python/",
"ordvec-python/",
"tests/__pycache__/",
"tests/release_environment_settings.sh",
"tests/release_pypi_canonical_dist.py",
"tests/release_pypi_canonical_dist_tests.py",
"tests/release_publish_invariants.py",
"tests/release_publish_invariants.sh",
"tests/release_signed_release_invariants.sh",
]
# docs.rs build configuration: build with default features only. Stable default
# APIs, including `RankQuantFastscan`, are documented; the experimental
# MultiBucketBitmap scaffold stays off the published docs.
[]
= false
[]
= "1.10"
= { = "1.0", = ["derive"], = true }
[]
# Test/bench corpora are seeded with these; not needed by the library.
= "0.10"
= "0.10"
[]
# SIMD is always compiled, never feature-gated: x86_64 dispatches AVX-512/AVX2 at
# runtime via is_x86_feature_detected!, aarch64 uses NEON (baseline, no detection),
# wasm32 uses simd128 when built with -C target-feature=+simd128, and every other
# target takes the scalar fallback. `experimental` exposes MultiBucketBitmap
# (research scaffold), kept off the stable surface.
= []
= ["dep:serde"]
# `bench-utils` exposes benchmark-only reference paths used by examples and
# parity tests. These helpers are not part of the default public API.
= []
# `test-utils` exposes internal dispatch probes used by the crate's own integration
# tests (e.g. the allocation-free guarantee check). Gated off the default surface
# because these helpers are not part of the public API and carry no semver guarantee.
= []
[[]]
= "bench_rank"
= "examples/bench_rank.rs"
= ["bench-utils"]
[]
= true
= 1
= 3
# Workspace: the `ordvec-python` member holds the PyO3/maturin bindings shipped to
# PyPI as `ordvec`; `ordvec-manifest-python` holds the PyPI bindings shipped as
# `ordvec-manifest`; `ordvec-ffi` holds the C ABI; and `ordvec-manifest` is a
# lockstep manifest verifier crate. `default-members = ["."]` keeps bare
# `cargo build/test/clippy` scoped to the core crate, so the existing CI gates
# are unaffected; non-core members get explicit CI lanes. The single workspace
# `Cargo.lock` carries their transitive dependencies.
[]
= "2"
= ["ordvec-python", "ordvec-ffi", "ordvec-manifest", "ordvec-manifest-python", "benchmarks/beir-bench"]
= ["."]
# fuzz/ is a cargo-fuzz crate built only via `cargo +nightly fuzz`. Keep it out of
# the workspace so it stays a standalone crate (its own Cargo.lock) and `cargo fuzz`
# run from fuzz/ doesn't error on "wrong workspace".
= ["fuzz"]