[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"