[package]
edition = "2024"
name = "bamboo-core"
version = "0.3.5"
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vietnamese input method engine written in Rust"
documentation = "https://docs.rs/bamboo-core"
readme = "README.md"
keywords = [
"vietnamese",
"ime",
"input-method",
"telex",
"unicode",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/nguyen10t2/bamboo_core"
[features]
default = []
wasm = ["wasm-bindgen"]
[lib]
name = "bamboo_core"
path = "src/lib.rs"
[[test]]
name = "bamboo_engine_integration"
path = "tests/bamboo_engine_integration.rs"
[[test]]
name = "comprehensive_typing"
path = "tests/comprehensive_typing.rs"
[[test]]
name = "keystroke_verification"
path = "tests/keystroke_verification.rs"
[dependencies.bitflags]
version = "2.11.1"
[dependencies.phf]
version = "0.13.1"
features = ["macros"]
[dependencies.wasm-bindgen]
version = "0.2"
optional = true