sapling/eden/scm/lib/radixbuf/Cargo.toml
Jun Wu af375c51b0 radixbuf: use concrete error types
Summary: The `radixbuf` crate already has its own concrete error type. Use it.

Reviewed By: sfilipco

Differential Revision: D22855450

fbshipit-source-id: 307a46ddd79b28a18ee779867ee1e604b531828a
2020-08-06 12:31:57 -07:00

18 lines
273 B
TOML

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