# 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 = "sequence-map" version = "0.1.0" authors = ["Filip Filmar ", "Google Inc."] description = "Implements a map of unsigned 64-bit keys into strings.\n\nThe map is optimized for creating it once, and then reading many times. The struct `Builder` is\nused to build the map, and the struct `Map` is used for lookups.\n\nThe special property of the implementation is that it encodes all the data needed for the\nlookup in a single sequence of bytes. This makes it rather interesting for dynamic loading of\ndata that can then be placed in an operating system's read only memory. The internal structure\nrequires no decoding when it is loaded (say from a file).\n" readme = "README.md" keywords = ["lookup", "map", "data-structures", "sequence-map"] license = "Apache-2.0" repository = "https://github.com/filmil/sequence-map" [[bench]] name = "benchmarks" harness = false [dependencies.zerocopy] version = "0.3.0" [dev-dependencies.criterion] version = "0.3" [badges.is-it-maintained-issue-resolution] repository = "filmil/sequence-map" [badges.is-it-maintained-open-issues] repository = "filmil/sequence-map" [badges.maintenance] status = "actively-developed"