libdawg 1.0.0

A fast, memory-efficient DAWG (Directed Acyclic Word Graph) for word validation and prefix queries
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 = "2021"
name = "libdawg"
version = "1.0.0"
authors = ["Marcus Svensson <marcus@lincopia.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, memory-efficient DAWG (Directed Acyclic Word Graph) for word validation and prefix queries"
readme = "README.md"
keywords = [
    "dawg",
    "wordlist",
    "dictionary",
    "trie",
    "automaton",
]
categories = [
    "data-structures",
    "algorithms",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/mrcz/libdawg"

[features]
arena = ["dep:typed-arena"]
default = ["arena"]

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

[[example]]
name = "wordlist"
path = "examples/wordlist.rs"
required-features = ["arena"]

[dependencies.hashbrown]
version = "0.15"

[dependencies.mark_last]
version = "0.9.2"

[dependencies.smallvec]
version = "1.15"
features = [
    "union",
    "const_generics",
    "const_new",
]

[dependencies.typed-arena]
version = "2.0.1"
optional = true

[dev-dependencies.itertools]
version = "0.14"