2a3217d8d8
`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
19 lines
292 B
TOML
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
|