[package]
edition = "2024"
name = "waterkit-core"
version = "0.1.4"
authors = ["Lexo Liu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared primitives for waterkit (reactive Subscribed, units, identifiers, time)"
readme = "README.md"
keywords = [
"kit",
"reactive",
"waterui",
"permission",
"units",
]
categories = [
"gui",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/water-rs/waterkit"
resolver = "2"
[features]
default = []
serde = [
"uuid/serde",
"jiff/serde",
]
[lib]
name = "waterkit_core"
path = "src/lib.rs"
[dependencies.executor-core]
version = "0.7.1"
features = ["std"]
[dependencies.jiff]
version = "0.2"
[dependencies.nami]
version = "0.11.0"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = ["std"]
default-features = false
[dev-dependencies.async-channel]
version = "2.5"
[dev-dependencies.futures]
version = "0.3"
[lints.clippy]
multiple_crate_versions = "allow"
unused_async_trait_impl = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"