diff --git a/Cargo.lock b/Cargo.lock index f07087c6..35c2afb2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1108,14 +1108,20 @@ dependencies = [ [[package]] name = "ctor" -version = "0.2.9" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +checksum = "a7747ac3a66a06f4ee6718686c8ea976d2d05fb30ada93ebd76b3f9aef97257c" dependencies = [ - "quote", - "syn 2.0.90", + "ctor-proc-macro", + "dtor", ] +[[package]] +name = "ctor-proc-macro" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f211af61d8efdd104f96e57adf5e426ba1bc3ed7a4ead616e15e5881fd79c4d" + [[package]] name = "ctr" version = "0.7.0" @@ -1261,6 +1267,21 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" +[[package]] +name = "dtor" +version = "0.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bf39a0bfd1f94d62ffdb2802a7e6244c0f34f6ebacf5d4c26547d08cd1d67a5" +dependencies = [ + "dtor-proc-macro", +] + +[[package]] +name = "dtor-proc-macro" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7454e41ff9012c00d53cf7f475c5e3afa3b91b7c90568495495e8d9bf47a1055" + [[package]] name = "ecies" version = "0.2.7" diff --git a/Cargo.toml b/Cargo.toml index c41d1a51..4676f8ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ rusqlite = { version = "0.29.0", features = [ [dev-dependencies] anyhow = "1" colored = "3.0.0" -ctor = "0.2.9" +ctor = "0.4.0" qrcode = { version = "0.14.1", default-features = false } rustyline = { version = "15.0.0", features = ["derive"] } serial_test = { version = "3.2.0", features = ["file_locks"] }