# 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 = "trie-rs" version = "0.4.2" authors = [ "Sho Nakatani ", "Shane Celis ", ] description = "Memory efficient trie (prefix tree) and map library based on LOUDS" homepage = "https://github.com/laysakura/trie-rs" readme = "README.md" keywords = [ "trie", "louds", "succinct", ] categories = [ "compression", "data-structures", ] license = "MIT OR Apache-2.0" repository = "https://github.com/laysakura/trie-rs" [[bench]] name = "bench" harness = false [dependencies.louds-rs] version = "0.7" [dependencies.mem_dbg] version = "0.1.4" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dev-dependencies.criterion] version = "0.2" [dev-dependencies.lazy_static] version = "1.3" [dev-dependencies.rand] version = "0.6" [dev-dependencies.version-sync] version = "0.9" [features] mem_dbg = [ "louds-rs/mem_dbg", "dep:mem_dbg", ] rayon = ["louds-rs/rayon"] serde = [ "louds-rs/serde", "dep:serde", ]