Skip to content

Add a quickcheck crate #14100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Andreas Ots <[email protected]>
Andrei Formiga <[email protected]>
Andrew Chin <[email protected]>
Andrew Dunham <[email protected]>
Andrew Gallant <[email protected]>
Andrew Paseltiner <[email protected]>
Anthony Juckel <[email protected]>
aochagavia <[email protected]>
Expand Down
7 changes: 5 additions & 2 deletions mk/crates.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@

TARGET_CRATES := libc std green rustuv native flate arena glob term semver \
uuid serialize sync getopts collections num test time rand \
workcache url log regex graphviz core
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat regex_macros fmt_macros
workcache url log regex graphviz core quickcheck
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat regex_macros fmt_macros \
quickcheck_macros
CRATES := $(TARGET_CRATES) $(HOST_CRATES)
TOOLS := compiletest rustdoc rustc

Expand Down Expand Up @@ -89,6 +90,8 @@ DEPS_log := std sync
DEPS_regex := std collections
DEPS_regex_macros = syntax std regex
DEPS_fmt_macros = std
DEPS_quickcheck = std collections log rand
DEPS_quickcheck_macros = syntax std

TOOL_DEPS_compiletest := test green rustuv getopts
TOOL_DEPS_rustdoc := rustdoc native
Expand Down
1 change: 1 addition & 0 deletions src/doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ li {list-style-type: none; }
* [The `libc` bindings](libc/index.html)
* [The `native` 1:1 threading runtime](native/index.html)
* [The `num` arbitrary precision numerics library](num/index.html)
* [The `quickcheck` crate for intelligent random testing](quickcheck/index.html)
* [The `rand` library for random numbers and distributions](rand/index.html)
* [The `regex` library for regular expressions](regex/index.html)
* [The `rustc` compiler](rustc/index.html)
Expand Down
Loading