nybbles 0.4.8

Efficient nibble-sized (4-bit) byte sequence data structure
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.88"
name = "nybbles"
version = "0.4.8"
authors = ["DaniPopes <57450786+DaniPopes@users.noreply.github.com>"]
build = false
exclude = [
    ".github/",
    "deny.toml",
    "release.toml",
    "rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient nibble-sized (4-bit) byte sequence data structure"
homepage = "https://github.com/alloy-rs/nybbles"
readme = "README.md"
keywords = [
    "nibbles",
    "vector",
    "ethereum",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alloy-rs/nybbles"

[features]
arbitrary = [
    "dep:arbitrary",
    "dep:proptest",
    "ruint/arbitrary",
    "smallvec/arbitrary",
    "std",
]
default = ["std"]
nightly = [
    "smallvec/specialization",
    "smallvec/may_dangle",
]
rlp = ["dep:alloy-rlp"]
serde = [
    "dep:serde",
    "ruint/serde",
    "smallvec/serde",
]
std = [
    "serde?/std",
    "alloy-rlp?/std",
    "proptest?/std",
    "ruint/std",
]

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

[[test]]
name = "proptests"
path = "tests/proptests.rs"

[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
required-features = ["arbitrary"]

[dependencies.alloy-rlp]
version = "0.3"
optional = true
default-features = false

[dependencies.arbitrary]
version = "1.3"
features = ["derive"]
optional = true
default-features = false

[dependencies.cfg-if]
version = "1.0"

[dependencies.proptest]
version = "1.4"
features = ["alloc"]
optional = true
default-features = false

[dependencies.ruint]
version = "1.17.0"
features = ["alloc"]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dependencies.smallvec]
version = "1.0"
features = [
    "const_new",
    "union",
]
default-features = false

[dev-dependencies.criterion]
version = "4.3"
package = "codspeed-criterion-compat"

[dev-dependencies.hex-literal]
version = "1"

[dev-dependencies.serde_json]
version = "1.0"

[profile.profiling]
debug = 2
inherits = "release"
strip = "none"