lexrs 0.2.0

Efficient lexicon data structures: Trie and DAWG
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 = "lexrs"
version = "0.2.0"
authors = ["Abhishek Singh <abhishek.singh20141@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient lexicon data structures: Trie and DAWG"
homepage = "https://github.com/aosingh/lexrs"
documentation = "https://docs.rs/lexrs"
readme = "README.md"
keywords = [
    "trie",
    "dawg",
    "lexicon",
    "search",
    "nlp",
]
categories = [
    "data-structures",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/aosingh/lexrs"
resolver = "2"

[features]
python = [
    "dep:pyo3",
    "pyo3/extension-module",
]

[lib]
name = "lexrs"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "genome_bench"
path = "src/bin/genome_bench.rs"

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

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

[dependencies.pyo3]
version = "0.28"
optional = true

[dependencies.thiserror]
version = "1"