[package]
edition = "2024"
name = "celox-napi"
version = "0.4.1"
authors = ["tignear"]
build = "build.rs"
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "N-API/WASI simulator handles and frontend adapter API for Celox"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/celox-sim/celox"
resolver = "2"
[lib]
name = "celox_napi"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[dependencies.celox-design]
version = "=0.4.1"
[dependencies.celox-ts-gen]
version = "=0.4.1"
[dependencies.fxhash]
version = "0.2.1"
[dependencies.globset]
version = "0.4"
[dependencies.miette]
version = "7.6"
[dependencies.napi]
version = "=3.12.1"
features = [
"napi8",
"serde-json",
]
[dependencies.napi-derive]
version = "=3.6.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.toml]
version = "1.0.3"
[dependencies.veryl-analyzer]
version = "0.20.3"
[dependencies.veryl-metadata]
version = "0.20.3"
[dependencies.veryl-parser]
version = "0.20.3"
default-features = false
[dependencies.veryl-path]
version = "0.20.3"
[dev-dependencies.tempfile]
version = "3.26"
[build-dependencies.napi-build]
version = "=2.4.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.celox]
version = "=0.4.1"
features = ["host-runtime"]
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.celox]
version = "=0.4.1"
default-features = false
[lints.clippy]
collapsible_if = "allow"
disallowed_macros = "deny"
disallowed_methods = "deny"
disallowed_types = "deny"
too_many_arguments = "allow"
type_complexity = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"