marisa-rs/Cargo.toml
2025-07-24 02:24:10 +09:00

22 lines
573 B
TOML

[package]
name = "marisa-rs"
version = "0.1.0"
edition = "2021"
description = "Safe Rust wrapper for the marisa-trie C++ library - a static memory-efficient trie data structure. Requires marisa-trie system library."
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://crates.io/crates/marisa-rs"
keywords = ["trie", "string", "search", "marisa"]
categories = ["data-structures", "text-processing"]
[lib]
name = "marisa_rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
libc = "0.2"
[build-dependencies]
cc = "1.0"
pkg-config = "0.3"
bindgen = "0.69"