sapling/lib/treestate/Cargo.toml
Jun Wu c5b267584b treestate: migrate to rand 0.5 to fix cargo test without breaking buck
Summary:
The pull request [1] is still open, which means `quickcheck::rand` is still
private when building with `cargo`. It only works with a patched quickcheck.
We cannot revert D8234503 since that will break buck build. So there is no
choice but upgrade to rand 0.5.

[1]: https://github.com/BurntSushi/quickcheck/pull/204

Reviewed By: DurhamG

Differential Revision: D8297404

fbshipit-source-id: 19937c49ae96a39e326b1b54eb00e6e2944193c2
2018-06-06 12:54:37 -07:00

18 lines
337 B
TOML

[package]
name = "treestate"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
[dependencies]
bitflags = "*"
byteorder = "*"
error-chain = "*"
twox-hash = "*"
vlqencoding = { version = "*", path = "../vlqencoding" }
[dev-dependencies]
itertools = "*"
quickcheck = "0.6"
rand = "0.5"
tempdir = "*"