Make is_dev for get_common_key() non-optional

This commit is contained in:
2025-04-03 13:41:44 -04:00
parent 405df67e49
commit 0bda6dabf3
6 changed files with 36 additions and 14 deletions

21
Cargo.lock generated
View File

@@ -517,6 +517,7 @@ dependencies = [
"regex",
"rsa",
"sha1",
"thiserror",
]
[[package]]
@@ -596,6 +597,26 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "thiserror"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "typenum"
version = "1.18.0"