[package] name = "bolero-generator" version = "0.11.1" authors = ["Cameron Bytheway "] description = "value generator for testing and fuzzing" homepage = "https://github.com/camshaft/bolero" repository = "https://github.com/camshaft/bolero" keywords = ["testing", "quickcheck", "property", "fuzz", "fuzzing"] license = "MIT" edition = "2021" readme = "README.md" rust-version = "1.66.0" [features] default = ["either", "std"] std = ["alloc", "either/use_std"] alloc = ["rand_core/alloc"] [dependencies] arbitrary = { version = "1.0", optional = true } bolero-generator-derive = { version = "0.11", path = "../bolero-generator-derive" } either = { version = "1.5", default-features = false, optional = true } rand_core = { version = "0.6", default-features = false } [dev-dependencies] rand = "0.8"