851a4dca3c
## Issue Addressed Fixes #2141 Remove [tempdir](https://docs.rs/tempdir/0.3.7/tempdir/) in favor of [tempfile](https://docs.rs/tempfile/3.1.0/tempfile/). ## Proposed Changes `tempfile` has a slightly different api that makes creating temp folders with a name prefix a chore (`tempdir::TempDir::new("toto")` => `tempfile::Builder::new().prefix("toto").tempdir()`). So I removed temp folder name prefix where I deemed it not useful. Otherwise, the functionality is the same.
21 lines
514 B
TOML
21 lines
514 B
TOML
[package]
|
|
name = "remote_signer_backend"
|
|
version = "0.2.0"
|
|
authors = ["Herman Junge <herman@sigmaprime.io>"]
|
|
edition = "2018"
|
|
|
|
[dev-dependencies]
|
|
helpers = { path = "../../testing/remote_signer_test", package = "remote_signer_test" }
|
|
sloggers = "1.0.1"
|
|
tempfile = "3.1.0"
|
|
|
|
[dependencies]
|
|
bls = { path = "../../crypto/bls" }
|
|
clap = "2.33.3"
|
|
hex = "0.4.2"
|
|
lazy_static = "1.4.0"
|
|
regex = "1.3.9"
|
|
slog = "2.5.2"
|
|
types = { path = "../../consensus/types" }
|
|
zeroize = { version = "1.1.1", features = ["zeroize_derive"] }
|