Skip to content

Commit

Permalink
[rust] smaller release number, hide work in progress from crates
Browse files Browse the repository at this point in the history
[rust] update owner pre-push

[rust] smaller list of keywords
  • Loading branch information
barakmich committed Sep 23, 2024
1 parent 1764d9a commit 6019e93
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,16 @@ fn main() -> Result<()> {

# TODOs

We're still early; Go is the more tried-and-true and suits the beta use-case, but Rust is a good deal faster. We welcome contributions.

## Go
- [ ] More benchmarks
-
- [ ] New Quantizations
- [ ] Hamming Distance (single-bit vectors)
- [ ] Novel quantizations
## Rust
- [ ] Disk backend
- [ ] Finish disk backend to match Go (in progress, shortly)
- [ ] New Quantizations


### Acknowledgements
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "bbqvec"
version = "0.1.0"
version = "0.0.9"
edition = "2021"
repository = "https://github.com/daxe-ai/bbqvec"
authors = ["Daxe, Inc.", "Barak Michener"]
authors = ["Daxe, Inc.", "Barak Michener <[email protected]>"]
readme = "../README.md"
license = "Apache-2.0"
keywords = ["vector", "database", "ann", "knn", "bitmap", "search", "nearest-neighbor", "embedding", "embedded"]
keywords = ["vector", "database", "aknn", "search", "nearest-neighbor"]
categories = ["algorithms", "data-structures", "database-implementations"]
description = "Scalable, embeddable, vector storage for approximate K-nearest-neighbors (AKNN)"

Expand Down
6 changes: 3 additions & 3 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pub(crate) mod counting_bitmap;
pub(crate) mod quantization;
pub(crate) mod vector_file;
pub use quantization::BF16Quantization;
pub use quantization::NoQuantization;

Expand All @@ -17,8 +16,9 @@ pub(crate) mod backend_memory;
pub use backend_memory::MemoryBackend;
pub use backend_memory::QuantizedMemoryBackend;

pub(crate) mod backend_disk;
pub use backend_disk::DiskBackend;
//pub(crate) mod vector_file;
//pub(crate) mod backend_disk;
//pub use backend_disk::DiskBackend;

pub mod vector;

Expand Down

0 comments on commit 6019e93

Please sign in to comment.