[package]
edition = "2024"
rust-version = "1.97.0"
name = "kevy-wasm"
version = "6.2.2"
authors = ["GOLIA K.K."]
build = false
exclude = [
"bench/",
"pkg/kevy.wasm",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WebAssembly bindings for kevy — the embedded Redis-compatible KV engine behind a hand-written C ABI for browsers and JS runtimes."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-wasm"
readme = "README.md"
keywords = [
"kevy",
"redis",
"kv",
"wasm",
"browser",
]
categories = [
"database-implementations",
"caching",
"wasm",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"
[lib]
name = "kevy_wasm"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.kevy-embedded]
version = "6.2.2"
features = [
"core",
"persist",
"index",
"text",
"vector",
]
default-features = false
[dependencies.kevy-persist]
version = "6.2.2"
[dependencies.kevy-resp]
version = "6.2.2"
[dependencies.kevy-store]
version = "6.2.2"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"