[package] name = "proptest_async" authors = ["Nathan Perry "] description = "proptest macro supporting async tests" version = "0.2.1" edition = "2021" homepage = "https://public.git.npry.dev/proptest_async/about" repository = "https://public.git.npry.dev/proptest_async" license = "MIT" include = ["/src/**.rs", "/README.md"] [features] default = ["async_std"] async_std = ["dep:async-std"] tokio = ["dep:tokio"] [dependencies] proptest = "1.4" async-std = { version = "1.12", optional = true } tokio = { version = "1.36", optional = true, features = ["rt", "time"] }