[package]
edition = "2024"
name = "nami-core"
version = "0.3.2"
authors = ["Lexo Liu <me@lexo.cool>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A powerful, lightweight reactive framework."
homepage = "https://github.com/water-rs/nami"
readme = "README.md"
keywords = [
"reactive",
"binding",
"observer",
"state",
]
categories = [
"gui",
"data-structures",
"embedded",
"wasm",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/water-rs/nami"
resolver = "2"
[features]
default = ["std"]
std = []
[lib]
name = "nami_core"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
all = "warn"
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"