-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 779 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "monkey_test"
version = "0.9.2"
rust-version = "1.73"
edition = "2021"
license = "MIT"
homepage = "https://github.com/jockbert/monkey_test"
repository = "https://github.com/jockbert/monkey_test"
documentation = "https://docs.rs/monkey_test/"
authors = ["Joakim Akerblom <per.joakim.eriksson@gmail.com>"]
description = "A property based testing (PBT) tool like QuickCheck, ScalaCheck and similar libraries, for the Rust programming language."
keywords = ["testing", "property", "quickcheck", "shrinking", "hypothesis"]
categories = ["development-tools::testing"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
num-traits = "0.2"
rand = "0.9.2"
rand_chacha = "0.9.0"
panic-message = "0.3.0"
[dev-dependencies]
assert_approx_eq = "1.1"