alp 0.0.2

A pure Rust implementation of Adaptive Lossless floating-Point Compression by Afroozeh et al.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.91.0"
name = "alp"
version = "0.0.2"
build = false
exclude = [".github/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust implementation of Adaptive Lossless floating-Point Compression by Afroozeh et al."
documentation = "https://docs.rs/alp"
readme = "README.md"
keywords = [
    "alp",
    "compression",
    "floating-point",
    "codec",
    "lossless",
]
categories = ["compression"]
license = "Apache-2.0"
repository = "https://github.com/spiraldb/alp"

[lib]
name = "alp"
path = "src/lib.rs"

[[bench]]
name = "alp_rd"
path = "benches/alp_rd.rs"
harness = false

[dependencies.fastlanes]
version = "0.6"

[dependencies.itertools]
version = "0.15.0"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "5.0.1"
features = ["cargo_bench_support"]
default-features = false
package = "codspeed-criterion-compat"

[lints.clippy]
as_ptr_cast_mut = "deny"
borrow_as_ptr = "deny"
cast_possible_truncation = "allow"
cognitive_complexity = "deny"
collection_is_never_read = "deny"
dbg_macro = "deny"
debug_assert_with_mut_call = "deny"
derive_partial_eq_without_eq = "deny"
equatable_if_let = "deny"
exit = "deny"
expect_fun_call = "deny"
expect_used = "allow"
fallible_impl_from = "deny"
get_unwrap = "deny"
host_endian_bytes = "deny"
if_then_some_else_none = "deny"
inconsistent_struct_constructor = "deny"
manual_assert = "deny"
manual_is_variant_and = "deny"
many_single_char_names = "deny"
mem_forget = "deny"
missing_errors_doc = "deny"
missing_panics_doc = "deny"
multiple_crate_versions = "allow"
or_fun_call = "deny"
panic = "deny"
redundant_clone = "deny"
same_name_method = "deny"
tests_outside_test_module = "deny"
unwrap_in_result = "deny"
unwrap_used = "deny"
use_debug = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.rust]
macro_use_extern_crate = "deny"
missing_docs = "deny"
redundant_lifetimes = "deny"
unsafe_op_in_unsafe_fn = "deny"
unused_lifetimes = "deny"
unused_qualifications = "deny"
warnings = "deny"