[package]
name = "byte-array-ops"
version = "0.3.6"
edition = "2024"
authors = ["Salem B. <jurassic.lizard@protonmail.com>"]
description = "A no_std-compatible library for security-by-default byte array operations. Includes automatic memory zeroization, constant-time utilities, multiple input formats (hex, binary, UTF-8), bitwise operations, and comprehensive type conversions with minimal dependencies."
license = "Apache-2.0"
repository = "https://gitlab.com/jurassicLizard/byte-array-ops"
homepage = "https://gitlab.com/jurassicLizard/byte-array-ops"
documentation = "https://docs.rs/byte-array-ops"
readme = "README.md"
keywords = ["byte-array", "no-std", "cryptography", "bitwise", "security"]
categories = ["no-std", "cryptography", "encoding", "data-structures"]
rust-version = "1.85.1"
[dependencies]
zeroize = { version = "1.8.2", default-features = false, features = ["alloc"] }
[features]
default = []
ops_simd = ["zeroize/simd"]
experimental = []
[profile.release]
strip=true
overflow-checks = true
[profile.release-optimized]
inherits="release"
opt-level = 3
lto = "fat"
codegen-units = 1