forked from proptest-rs/proptest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (79 loc) · 2.2 KB
/
Copy pathCargo.toml
File metadata and controls
102 lines (79 loc) · 2.2 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "proptest"
version = "0.8.3"
authors = ["Jason Lingle"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/altsysrq/proptest"
documentation = "https://altsysrq.github.io/rustdoc/proptest/0.8.3/proptest/"
keywords = ["property", "testing", "quickcheck", "fuzz", "hypothesis"]
categories = ["development-tools::testing"]
description = """
Hypothesis-like property-based testing and shrinking.
"""
[badges]
travis-ci = { repository = "AltSysrq/proptest" }
[badges.appveyor]
repository = "AltSysrq/proptest"
branch = "master"
service = "github"
[features]
default = ["std", "fork", "timeout"]
# Enables unstable features of Rust.
unstable = ["rand/i128_support"]
# Required for no_std usage thanks to lazy_static's
# dependency on the spin crate, which is nightly-only
# for no_std.
nightly = ["lazy_static/spin_no_std"]
# Enables the use of standard-library dependent feature
std = ["rand/std", "bit-set/std", "byteorder/std",
"quick-error", "regex-syntax", "num-traits/std"]
# For use in no_std environments with access to an allocator
#alloc = ["hashmap_core"]
alloc = []
# Enables use of the "fork" feature.
#
# Requires std.
fork = ["std", "rusty-fork", "tempfile"]
# Enables use of the "timeout" feature.
#
# Requires the "fork" feature.
timeout = ["fork", "rusty-fork/timeout"]
[dependencies]
bitflags = "1.0.1"
# [dependencies.hashmap_core]
# version = "0.1.5"
# optional = true
[dependencies.lazy_static]
version = "1.0.0"
default-features = false
[dependencies.num-traits]
version = "0.2.2"
default-features = false
[dependencies.quick-error]
version = "1.2.1"
optional = true
[dependencies.regex-syntax]
# If you change this, make sure to also bump the `regex` dependency to a
# version that also uses this version of regex-syntax.
version = "0.6.0"
optional = true
[dependencies.bit-set]
version = "0.5.0"
default-features = false
[dependencies.rand]
version = "0.5.0"
default-features = false
features = ["alloc", "i128_support"]
[dependencies.byteorder]
version = "1.2.3"
default-features = false
[dependencies.rusty-fork]
version = "0.2"
optional = true
default-features = false
[dependencies.tempfile]
version = "3.0"
optional = true
[dev-dependencies]
regex = "1.0"