[package]
edition = "2024"
rust-version = "1.90"
name = "brynja-platform"
version = "0.1.6"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Explicit platform integration traits for Brynja"
homepage = "https://github.com/valkyoth/brynja"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valkyoth/brynja"
[features]
default = []
[lib]
name = "brynja_platform"
path = "src/lib.rs"
[dependencies.brynja-core]
version = "=0.7.0"
[lints.clippy]
arithmetic_side_effects = "forbid"
cast_possible_truncation = "forbid"
cast_sign_loss = "forbid"
expect_used = "forbid"
indexing_slicing = "forbid"
panic = "forbid"
too_many_arguments = "forbid"
undocumented_unsafe_blocks = "forbid"
unwrap_used = "forbid"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "forbid"
unused_must_use = "deny"