# 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 = "2021" rust-version = "1.64" name = "nybbles" version = "0.2.1" authors = ["DaniPopes <57450786+DaniPopes@users.noreply.github.com>"] exclude = [ ".github/", "deny.toml", "release.toml", "rustfmt.toml", ] 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" [[bench]] name = "bench" 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.const-hex] version = "1.10" features = ["alloc"] default-features = false [dependencies.proptest] version = "1.4" features = ["alloc"] optional = true 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 = "0.5" [dev-dependencies.hex-literal] version = "0.4" [features] arbitrary = [ "dep:arbitrary", "dep:proptest", "smallvec/arbitrary", "std", ] default = ["std"] rlp = ["dep:alloy-rlp"] serde = [ "dep:serde", "smallvec/serde", ] std = [ "const-hex/std", "serde?/std", "alloy-rlp?/std", "proptest?/std", ]