basic_trie 2.1.0

A simple Trie implementation in Rust
Documentation
# 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 = "2024"
name = "basic_trie"
version = "2.1.0"
authors = ["LukasCobbler"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple Trie implementation in Rust"
documentation = "https://docs.rs/basic_trie/"
readme = "README.md"
keywords = [
    "trie",
    "collection",
    "generic",
]
categories = ["data-structures"]
license-file = "LICENSE"
repository = "https://github.com/lukascobbler/basic_trie"

[features]
data = []
default = [
    "unicode",
    "data",
]
serde = [
    "serde_crate",
    "thin-vec/serde",
]
unicode = [
    "unicode-segmentation",
    "unicode-normalization",
]

[lib]
name = "basic_trie"
path = "src/lib.rs"

[[test]]
name = "complete_test_data"
path = "tests/complete_test_data.rs"

[[test]]
name = "complete_test_regular"
path = "tests/complete_test_regular.rs"

[dependencies.fxhash]
version = "0.2.*"

[dependencies.serde_crate]
version = "1.0.*"
features = ["derive"]
optional = true
package = "serde"

[dependencies.thin-vec]
version = "0.2.*"

[dependencies.unicode-normalization]
version = "0.1.*"
optional = true

[dependencies.unicode-segmentation]
version = "1.12.*"
optional = true

[dev-dependencies.growable-bloom-filter]
version = "2.1.0"

[dev-dependencies.peak_alloc]
version = "0.2.0"

[dev-dependencies.randomizer]
version = "0.1.2"

[dev-dependencies.serde-pickle]
version = "1.1.*"

[dev-dependencies.serde_json]
version = "1.0.*"