sapling/lib/radixbuf/Cargo.toml
Xavier Deguillard 91b1a56c3a radixbuf: make it compile on windows
Summary:
Instead of using the rand crate imported into quickcheck, we can use the
rand crate directly.

Reviewed By: quark-zju

Differential Revision: D14174653

fbshipit-source-id: c848f139765b9e458d374790227399f0ad836af6
2019-02-22 10:22:30 -08:00

17 lines
259 B
TOML

[package]
name = "radixbuf"
version = "0.1.0"
[dependencies]
error-chain = "0.11"
vlqencoding = { path = "../vlqencoding" }
[dev-dependencies]
minibench = { path = "../minibench" }
quickcheck = "0.6"
rand = "0.5.5"
[[bench]]
name = "bench"
harness = false