[package]
edition = "2024"
name = "alien-signals"
version = "0.1.4"
authors = ["kanarus <mail@kanarus.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust port of alien-signals 👾 the lightest signal library"
homepage = "https://crates.io/crates/alien-signals"
documentation = "https://docs.rs/alien-signals"
readme = "README.md"
keywords = [
"reactive",
"signals",
"alien-signals",
]
categories = [
"data-structures",
"web-programming",
]
license = "MIT"
repository = "https://github.com/ohkami-rs/alien-signals-rs"
[package.metadata.tasks]
CI = "cargo metask test format_check clippy clippy_wasm32 miri"
test = "cargo test"
format_check = "cargo fmt --check"
clippy = "cargo +nightly clippy --all-targets -- --deny warnings"
clippy_wasm32 = "cargo +nightly clippy --all-targets --target wasm32-unknown-unknown -- --deny warnings"
miri = "cargo +nightly miri test"
[lib]
name = "alien_signals"
path = "src/lib.rs"
[[test]]
name = "computed_spec"
path = "tests/computed_spec.rs"
[[test]]
name = "effect_scope_spec"
path = "tests/effect_scope_spec.rs"
[[test]]
name = "effect_spec"
path = "tests/effect_spec.rs"
[[test]]
name = "issue_48_spec"
path = "tests/issue_48_spec.rs"
[[test]]
name = "topology_spec"
path = "tests/topology_spec.rs"
[[test]]
name = "trigger_spec"
path = "tests/trigger_spec.rs"
[[test]]
name = "untrack_spec"
path = "tests/untrack_spec.rs"
[[bench]]
name = "propagate"
path = "benches/propagate.rs"
[lints.clippy]
collapsible_if = "allow"
type_complexity = "allow"