# 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 = "fuzzy_rocks" version = "0.4.0" authors = ["Luke Peterson "] description = "A persistent datastore backed by RocksDB with fuzzy key lookup using an arbitrary distance function accelerated by the SymSpell algorithm" readme = "README.md" keywords = [ "rocksdb", "fuzzy", "search", "fuzzy-search", "symspell", ] license = "MIT OR Apache-2.0" repository = "https://github.com/luketpeterson/fuzzy_rocks/" [[bench]] name = "lookups" harness = false [[bench]] name = "inserts" harness = false [dependencies.bincode] version = "1.3.3" optional = true [dependencies.bitcode] version = "=0.6.0" features = ["serde"] optional = true [dependencies.derive_more] version = "0.99.14" [dependencies.num-traits] version = "0.2.14" [dependencies.rmp] version = "0.8.12" optional = true [dependencies.rmp-serde] version = "1.1.2" optional = true [dependencies.rocksdb] version = ">=0.18.0, <=0.21.0" [dependencies.semver] version = "1.0.23" [dependencies.serde] version = "1.0.126" features = ["derive"] [dev-dependencies.criterion] version = "0.3" [dev-dependencies.csv] version = "1.1.6" [dev-dependencies.rand] version = "0.8.0" [dev-dependencies.rand_pcg] version = "0.3.1" [features] bincode = ["dep:bincode"] bitcode = ["dep:bitcode"] default = ["bitcode"] msgpack = [ "dep:rmp-serde", "dep:rmp", ] perf_counters = []