byte-array-ops 0.1.2

A no_std-compatible library for ergonomic byte array operations with optional security hardening. Supports multiple input formats (hex, binary, UTF-8), bitwise operations, and comprehensive type conversions with minimal dependencies.
Documentation
[dependencies.subtle]
default-features = false
features = ["core_hint_black_box"]
optional = true
version = "2.6.1"

[dependencies.zeroize]
default-features = false
features = ["alloc"]
optional = true
version = "1.8.2"

[features]
default = ["ops_algebra"]
experimental = []
ops_algebra = []
ops_simd = ["zeroize/simd"]
sec_basic_hardening = ["sec_harden_zeroize"]
sec_enhanced_hardening = ["sec_basic_hardening", "sec_harden_const_time_ops", "sec_harden_memlock"]
sec_harden_const_time_ops = ["dep:subtle"]
sec_harden_memencrypt = ["sec_harden_zeroize", "sec_harden_memlock"]
sec_harden_memlock = []
sec_harden_zeroize = ["dep:zeroize"]
sec_maximum_hardening = ["sec_enhanced_hardening", "sec_harden_memencrypt"]

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

[package]
authors = ["Salem B. <jurassic.lizard@protonmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "cryptography", "encoding", "data-structures"]
description = "A no_std-compatible library for ergonomic byte array operations with optional security hardening. Supports multiple input formats (hex, binary, UTF-8), bitwise operations, and comprehensive type conversions with minimal dependencies."
documentation = "https://docs.rs/byte-array-ops"
edition = "2024"
homepage = "https://gitlab.com/jurassicLizard/byte-array-ops"
keywords = ["byte-array", "no-std", "cryptography", "bitwise", "security"]
license = "Apache-2.0"
name = "byte-array-ops"
readme = "README.md"
repository = "https://gitlab.com/jurassicLizard/byte-array-ops"
rust-version = "1.85.1"
version = "0.1.2"

[profile.release]
strip = true

[profile.release-optimized]
codegen-units = 1
inherits = "release"
lto = "fat"
opt-level = 3