openethereum/util/blooms-db/Cargo.toml
marktoda 2a3217d8d8
Replace deprecated tempdir dependency with tempfile (#11588)
`Tempdir` is deprecated, but the functionality has been merged into
another crate: `tempfile`. This commit removes all `tempdir` dependencies
and replaces them with `tempfile` and the equivalent bindings.

Fixes #11560
2020-03-29 22:31:17 +02:00

19 lines
292 B
TOML

[package]
name = "blooms-db"
version = "0.1.0"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
ethbloom = "0.8.0"
parking_lot = "0.10.0"
[dev-dependencies]
criterion = "0.3"
tempfile = "3.1"
[[bench]]
name = "blooms"
harness = false