forked from mesalock-linux/quickcheck-sgx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 1.26 KB
/
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
24
25
26
27
28
29
30
31
32
33
[package]
name = "quickcheck"
version = "0.8.5" #:version
authors = ["Andrew Gallant <[email protected]>"]
description = "Automatic property based testing with shrinking."
documentation = "http://burntsushi.net/rustdoc/quickcheck/"
homepage = "https://github.com/BurntSushi/quickcheck"
repository = "https://github.com/BurntSushi/quickcheck"
readme = "README.md"
keywords = ["testing", "quickcheck", "property", "shrinking", "fuzz"]
categories = ["development-tools::testing"]
license = "Unlicense/MIT"
exclude = ["/.travis.yml", "/Makefile", "/ctags.rust", "/session.vim", "/sgx/*"]
[workspace]
#members = ["quickcheck_macros"]
[features]
default = ["regex", "use_logging", "mesalock_sgx"]
unstable = []
use_logging = ["log", "env_logger"]
regex = ["env_logger/regex"]
mesalock_sgx = ["sgx_tstd"]
[lib]
name = "quickcheck"
[dependencies]
env_logger = { git = "https://github.com/mesalock-linux/env_logger-sgx", optional = true }
log = { git = "https://github.com/mesalock-linux/log-sgx", optional = true }
rand = { git = "https://github.com/mesalock-linux/rand-sgx", tag = "v0.7.3_sgx1.1.3" }
rand_core = { git = "https://github.com/mesalock-linux/rand-sgx", tag = "v0.7.3_sgx1.1.3" }
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }