[package]
edition = "2024"
rust-version = "1.88.0"
name = "rusticated"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, standard-library-shaped async platform layer for brush-async"
documentation = "https://docs.rs/rusticated"
readme = "README.md"
keywords = [
"async",
"io",
"embedded",
"runtime",
"wasm",
]
categories = [
"asynchronous",
"development-tools",
"embedded",
]
license = "MIT"
repository = "https://github.com/mavity/rusticated"
[features]
default = []
threads = []
[lib]
name = "rusticated"
path = "src/lib.rs"
bench = false
[dependencies.hashbrown]
version = "0.15"
[dependencies.thiserror]
version = "2.0.18"
default-features = false
[target.'cfg(target_family = "wasm")'.dependencies.getrandom]
version = "0.4.2"
[lints.clippy]
bool_to_int_with_if = "allow"
cognitive_complexity = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
expect_used = "deny"
future_not_send = "allow"
if_not_else = "allow"
if_same_then_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
panic = "deny"
panic_in_result_fn = "deny"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
redundant_pub_crate = "allow"
result_large_err = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unwrap_in_result = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.async_fn_in_trait]
level = "allow"
priority = 1
[lints.rust.future_incompatible]
level = "deny"
priority = 0
[lints.rust.missing_docs]
level = "deny"
priority = 0
[lints.rust.nonstandard_style]
level = "deny"
priority = 0
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rust.unknown_lints]
level = "allow"
priority = -100
[lints.rust.warnings]
level = "deny"
priority = 0
[lints.rustdoc.all]
level = "deny"
priority = -1