-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (22 loc) · 918 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "proptest-stateful"
version = "0.1.3"
license = "Apache-2.0"
description = "Library for building stateful property tests using the proptest crate"
homepage = "https://github.com/readysettech/proptest-stateful/"
repository = "https://github.com/readysettech/proptest-stateful/"
documentation = "https://docs.rs/proptest-stateful/"
readme = "README.md"
keywords = ["property", "testing", "proptest", "stateful", "quickcheck"]
categories = ["development-tools::testing"]
authors = ["ReadySet Technology, Inc. <[email protected]>"]
edition = "2021"
[dependencies]
# NOTE: DO NOT REPLACE THESE WITH WORKSPACE DEPENDENCIES. This crate is
# released publicly on crates.io, so we need to include the actual package
# versions here to ensure that the crate is usable outside of the context of
# our repo.
async-trait = "0.1"
proptest = "1.4.0"
rand = "0.8.5"
tokio = { version = "1.37", features = ["full"] }