[package] name = "flipflop" version = "0.1.0" authors = ["ltdk "] edition = "2021" description = "Stress-tester for double-ended iterators." readme = "README.md" repository = "https://codeberg.org/clarfonthey/flipflop" license-file = "LICENSE.md" categories = [] include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] [dependencies] rand = { version = "0.8.5", default-features = false, optional = true } [dev-dependencies] rand = "0.8.5" [features] default = ["std", "rand"] std = ["alloc", "rand/std", "rand/std_rng"] alloc = [] rand = ["dep:rand"] nightly = []