# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "compressible-map" version = "0.3.0" authors = ["Duncan Fairbanks "] description = "A hash map that allows compressing the least recently used values." keywords = ["compression"] license = "MIT" repository = "https://github.com/bonsairobo/compressible-map" [[example]] name = "single_threaded" path = "examples/single_threaded.rs" required-features = ["bincode", "lz4"] [[example]] name = "multi_threaded" path = "examples/multi_threaded.rs" required-features = ["bincode", "lz4"] [dependencies.bincode] version = "1.3" optional = true [dependencies.lz4] version = "1.23" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.snap] version = "1.0.3" optional = true [dev-dependencies.crossbeam] version = "0.7" [features] default = []