[package]
edition = "2024"
name = "unifast-bindings-node"
version = "0.0.10"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Markdown/MDX compiler"
homepage = "https://unifast.dev"
readme = "README.md"
keywords = [
"markdown",
"mdx",
"compiler",
"parser",
"html",
]
categories = [
"parsing",
"text-processing",
"web-programming",
]
license = "MIT"
repository = "https://github.com/kenzo-pj/unifast"
resolver = "2"
[lib]
name = "unifast_bindings_node"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies.napi]
version = "2"
features = ["napi8"]
[dependencies.napi-derive]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.unifast-core]
version = "0.0.10"
features = ["highlight"]
default-features = false
[build-dependencies.napi-build]
version = "2"
[lints.clippy]
branches_sharing_code = "allow"
cargo_common_metadata = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "allow"
format_push_string = "allow"
if_not_else = "allow"
implicit_hasher = "allow"
iter_on_single_items = "allow"
iter_with_drain = "allow"
manual_let_else = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
naive_bytecount = "allow"
needless_continue = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
unnecessary_wraps = "allow"
unused_peekable = "allow"
unused_self = "allow"
used_underscore_binding = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"