[package]
edition = "2021"
rust-version = "1.70"
name = "rsmarisa"
version = "0.4.0"
authors = ["rust-marisa contributors"]
build = false
exclude = [
"bin/*.rs",
"tests/cpp_*.cc",
".github/",
"CLAUDE.md",
"PORTING_STATUS.md",
"*.marisa",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust port of marisa-trie: a static and space-efficient trie data structure"
homepage = "https://github.com/tokuhirom/rsmarisa"
documentation = "https://docs.rs/rsmarisa"
readme = "README.md"
keywords = [
"trie",
"data-structure",
"marisa",
"search",
]
categories = [
"data-structures",
"algorithms",
]
license = "BSD-2-Clause"
repository = "https://github.com/tokuhirom/rsmarisa"
[lib]
name = "rsmarisa"
path = "src/lib.rs"
[[bin]]
name = "rsmarisa-build"
path = "src/bin/rsmarisa-build.rs"
[[bin]]
name = "rsmarisa-common-prefix-search"
path = "src/bin/rsmarisa-common-prefix-search.rs"
[[bin]]
name = "rsmarisa-dump"
path = "src/bin/rsmarisa-dump.rs"
[[bin]]
name = "rsmarisa-lookup"
path = "src/bin/rsmarisa-lookup.rs"
[[bin]]
name = "rsmarisa-predictive-search"
path = "src/bin/rsmarisa-predictive-search.rs"
[[bin]]
name = "rsmarisa-reverse-lookup"
path = "src/bin/rsmarisa-reverse-lookup.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
required-features = []
[[example]]
name = "save_load"
path = "examples/save_load.rs"
required-features = []
[[test]]
name = "base_test"
path = "tests/base_test.rs"
[[test]]
name = "basic_lookup_test"
path = "tests/basic_lookup_test.rs"
[[test]]
name = "binary_compat_test"
path = "tests/binary_compat_test.rs"
[[test]]
name = "cli_tools_test"
path = "tests/cli_tools_test.rs"
[[test]]
name = "cpp_compatibility_test"
path = "tests/cpp_compatibility_test.rs"
[[test]]
name = "key_sort_test"
path = "tests/key_sort_test.rs"
[[test]]
name = "minimal_failing_test"
path = "tests/minimal_failing_test.rs"
[[test]]
name = "trie_build_trace_test"
path = "tests/trie_build_trace_test.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.memmap2]
version = "0.9"
[dev-dependencies.tempfile]
version = "3.0"