[package]
edition = "2024"
rust-version = "1.85"
name = "zrip-core"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared types and codecs for zrip (internal crate)"
readme = "README.md"
license = "MIT"
repository = "https://github.com/paddor/zrip"
[features]
alloc = []
default = ["std"]
dict_builder = ["std"]
nightly = []
std = ["alloc"]
[lib]
name = "zrip_core"
path = "src/lib.rs"
[lints.clippy]
bool_to_int_with_if = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_ptr_alignment = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
enum_glob_use = "allow"
explicit_iter_loop = "allow"
if_not_else = "allow"
inline_always = "allow"
items_after_statements = "allow"
manual_ilog2 = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_bitwise_bool = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
ptr_as_ptr = "allow"
ptr_cast_constness = "allow"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
single_match_else = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1