offline 1.1.0

Ways to make things more or less aligned.
Documentation
[package]
name = "offline"
version = "1.1.0"
description = "Ways to make things more or less aligned."
authors = ["ltdk <usr@ltdk.xyz>"]
repository = "https://codeberg.org/ltdk/offline"
readme = "README.md"
license-file = "LICENSE.md"
edition = "2024"
rust-version = "1.89.0"
categories = []
include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md"]

[dependencies]
allocator-api2 = { version = "0.4.0", default-features = false, optional = true }

[dev-dependencies]
mutants = "0.0.3"

[build-dependencies]

[lints.clippy]
alloc_instead_of_core = "warn"
borrow_as_ptr = "warn"
default_trait_access = "warn"
doc_markdown = "warn"
filter_map_next = "warn"
if_not_else = "warn"
ignored_unit_patterns = "warn"
inconsistent_struct_constructor = "warn"
manual_assert = "warn"
manual_is_power_of_two = "warn"
map_unwrap_or = "warn"
match_same_arms = "warn"
missing_docs_in_private_items = "warn"
needless_continue = "warn"
needless_raw_string_hashes = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
ref_as_ptr = "warn"
semicolon_if_nothing_returned = "warn"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
unnecessary_semicolon = "warn"

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"

[lints.rustdoc]
missing_crate_level_docs = "warn"

[features]
default = ["std"]
alloc = ["dep:allocator-api2", "allocator-api2/alloc"]
std = ["alloc", "allocator-api2/std"]
nightly = []

[package.metadata.docs.rs]
features = ["nightly"]