[package] name = "entropic" version = "0.1.0" authors = ["Nathaniel Bennett "] edition = "2021" categories = ["development-tools::testing"] keywords = ["fuzzing", "testing", "no_std", "arbitrary", "entropy"] readme = "../README.md" description = "Traits for converting Rust data structures to/from unstructured bytes" license = "MIT OR Apache-2.0" repository = "https://github.com/nathaniel-bennett/entropic/" documentation = "https://docs.rs/entropic/" rust-version = "1.67" [features] default = ["std"] derive = ["dep:entropic-derive"] bitvec = ["dep:bitvec"] std = ["alloc"] alloc = [] [dependencies] bitvec = { version = "1.0", optional = true } entropic-derive = { version = "0.1", path = "../entropic_derive", optional = true }