[package]
edition = "2024"
name = "rusqlite-ext"
version = "0.38.0"
authors = ["Cathy Luking <cathyluking@foxmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This is a Rusqlite extension for building the FTS5 tokenizer."
readme = "README.md"
keywords = [
"SQLite",
"Extension",
"Rusqlite",
"Tokenizer",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lukingcathy/sqlite-simple-tokenizer"
[lib]
name = "rusqlite_ext"
path = "lib.rs"
[dependencies.log]
version = "0.4.29"
[dependencies.rusqlite]
version = "0.38.0"
features = [
"bundled",
"functions",
"vtab",
"array",
]
default-features = false