sapling/lib/radixbuf/Cargo.toml
Jeremy Fitzhardinge 3f1822c997 tp2/rust: update rust-crates-io
Summary:
The big change here is updating to quickcheck 0.9, and removing the local
change to re-export `rand`. This also updates all the `rand*` crates to their
current versions, which match Quickcheck's API requirements. There was quite a
lot of API changes, including ascii's loss of quickcheck support.

Reviewed By: dtolnay

Differential Revision: D18198542

fbshipit-source-id: 31957eb8aad1d1f81c8216e8a80c2712007415c7
2019-10-31 09:40:40 -07:00

18 lines
273 B
TOML

[package]
name = "radixbuf"
version = "0.1.0"
edition = "2018"
[dependencies]
failure = "0.1.5"
vlqencoding = { path = "../vlqencoding" }
[dev-dependencies]
minibench = { path = "../minibench" }
quickcheck = "0.9"
rand = "0.5.5"
[[bench]]
name = "bench"
harness = false