diff --git a/Cargo.lock b/Cargo.lock index 9497efba..50663a27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -567,8 +567,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11e95a3e867422fd8d04049041f5671f94d53c32a9dcd82e2be268714942f3f3" dependencies = [ "crossterm", - "strum", - "strum_macros", + "strum 0.21.0", + "strum_macros 0.21.0", "unicode-width", ] @@ -3876,8 +3876,14 @@ name = "strum" version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2" + +[[package]] +name = "strum" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cae14b91c7d11c9a851d3fbc80a963198998c2a64eec840477fa92d8ce9b70bb" dependencies = [ - "strum_macros", + "strum_macros 0.23.0", ] [[package]] @@ -3892,6 +3898,19 @@ dependencies = [ "syn", ] +[[package]] +name = "strum_macros" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00ad150e9d51e33e8142984f577662c1324d49f3be45ed37bac8645fdcbe0fe5" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn", +] + [[package]] name = "subtle" version = "2.4.0" @@ -3955,7 +3974,7 @@ dependencies = [ "spectral", "sqlx", "structopt", - "strum", + "strum 0.23.0", "tempfile", "testcontainers 0.12.0", "thiserror", diff --git a/swap/Cargo.toml b/swap/Cargo.toml index e1ec464b..ad9c23e0 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -50,7 +50,7 @@ sha2 = "0.9" sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "ed25519", "serde" ] } sqlx = { version = "0.5", features = [ "sqlite", "runtime-tokio-rustls", "offline" ] } structopt = "0.3" -strum = { version = "0.21", features = [ "derive" ] } +strum = { version = "0.23", features = [ "derive" ] } thiserror = "1" time = "0.3" tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }