diff --git a/Cargo.lock b/Cargo.lock index 4f3acc2f..68040b49 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1029,13 +1029,14 @@ dependencies = [ [[package]] name = "dialoguer" -version = "0.10.4" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59c6f2989294b9a498d3ad5491a79c6deb604617378e1cdc4bfc1c1361fe2f87" +checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" dependencies = [ "console", "shell-words", "tempfile", + "thiserror", "zeroize", ] diff --git a/swap/Cargo.toml b/swap/Cargo.toml index c20074b6..ad48c4e2 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -24,7 +24,7 @@ config = { version = "0.13", default-features = false, features = [ "toml" ] } conquer-once = "0.4" curve25519-dalek = { package = "curve25519-dalek-ng", version = "4" } data-encoding = "2.5" -dialoguer = "0.10" +dialoguer = "0.11" directories-next = "2" ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "libsecp_compat", "serde", "adaptor" ] } ed25519-dalek = "1"