# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "arroy" version = "0.5.0" authors = [ "Kerollmops ", "Tamo ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Annoy-inspired Approximate Nearest Neighbors in Rust, based on LMDB and optimized for memory usage" documentation = "https://docs.rs/arroy" readme = "README.md" keywords = [ "ANN-search", "Graph-algorithms", "Vector-Search", "Store", ] categories = [ "algorithms", "database", "data-structures", "science", ] license = "MIT" repository = "https://github.com/meilisearch/arroy" [lib] name = "arroy" path = "src/lib.rs" [[example]] name = "build-tree-no-commit" path = "examples/build-tree-no-commit.rs" [[example]] name = "compare_with_hnsw" path = "examples/compare_with_hnsw.rs" [[example]] name = "fuzz" path = "examples/fuzz.rs" required-features = ["assert-reader-validity"] [[example]] name = "graph" path = "examples/graph.rs" required-features = ["plot"] [[example]] name = "import-vectors" path = "examples/import-vectors.rs" [[example]] name = "sample_vectors" path = "examples/sample_vectors.rs" [[example]] name = "search_movies" path = "examples/search_movies.rs" [[example]] name = "stats" path = "examples/stats.rs" [dependencies.bytemuck] version = "1.16.1" features = [ "derive", "extern_crate_alloc", ] [dependencies.byteorder] version = "1.5.0" [dependencies.heed] version = "0.20.2" default-features = false [dependencies.log] version = "0.4.21" [dependencies.memmap2] version = "0.9.4" [dependencies.nohash] version = "0.2.0" [dependencies.ordered-float] version = "4.2.0" [dependencies.rand] version = "0.8.5" features = ["alloc"] [dependencies.rayon] version = "1.10.0" [dependencies.roaring] version = "0.10.5" [dependencies.tempfile] version = "3.10.1" [dependencies.thiserror] version = "1.0.61" [dev-dependencies.anyhow] version = "1.0.86" [dev-dependencies.arbitrary] version = "1.3.2" features = ["derive"] [dev-dependencies.clap] version = "4.5.7" features = ["derive"] [dev-dependencies.env_logger] version = "0.11.3" [dev-dependencies.insta] version = "1.39.0" [dev-dependencies.instant-distance] version = "0.6.1" [dev-dependencies.proptest] version = "1.5.0" [dev-dependencies.rand] version = "0.8.5" features = ["std_rng"] [dev-dependencies.tempfile] version = "3.10.1" [features] assert-reader-validity = [] default = [] plot = []