# 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 = "kvtree" version = "0.1.0" authors = ["Alois Masanell "] include = [ "Cargo.toml", "readme.md", "license", "src/**", ] description = "Heterogenous in memory key value tree storage" homepage = "https://github.com/cantina-space/kvtree" documentation = "https://docs.rs/kvtree" readme = "readme.md" keywords = [ "key-value", "in-memory", "container", "tree", ] categories = [ "rust-patterns", "data-structures", ] license = "BSD-3-Clause" repository = "https://github.com/cantina-space/kvtree" [dependencies.ahash] version = "0.8.3" [dependencies.indexmap] version = "2.1.0" [dependencies.itertools] version = "0.11.0" [dependencies.rayon] version = "1.7.0" optional = true [dependencies.tuplify] version = "1.1.4" [features] core-storage = [] default = [ "rayon", "core-storage", ] rayon = [ "dep:rayon", "indexmap/rayon", ]