25 lines
582 B
TOML
25 lines
582 B
TOML
[package]
|
|
name = "marisa-rs"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
description = "Safe Rust wrapper for the marisa-trie C++ library"
|
|
license = "LGPL-2.1-or-later"
|
|
readme = "README.md"
|
|
repository = "https://git.centraworks.net/centra/marisa-rs"
|
|
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"
|
|
serde_json = "1.0"
|
|
base64 = "0.21"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
pkg-config = "0.3"
|
|
bindgen = "0.69"
|