diff --git a/Cargo.lock b/Cargo.lock index 43b2a0a..c40844d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -699,34 +699,6 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" -[[package]] -name = "either_n" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c91ae510829160d5cfb19eb4ae7b6e01d44b767ca8f727c6cee936e53cc9ae5" - -[[package]] -name = "enum-variants-strings" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf78b873650dcfe36b4f4b39cbad0615bfdda80b0dbd302bcc43f729e26d9cfc" -dependencies = [ - "enum-variants-strings-derive", -] - -[[package]] -name = "enum-variants-strings-derive" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c219bbaeb0dfcf75ef2a911d080245affeb04ad8da4b53986a0e4bbe6b966a2" -dependencies = [ - "either_n", - "proc-macro2", - "quote", - "string-cases", - "syn 2.0.71", -] - [[package]] name = "env_logger" version = "0.8.4" @@ -1046,7 +1018,6 @@ dependencies = [ "base64 0.13.1", "blake2b_simd", "ed25519-dalek", - "enum-variants-strings", "failure", "hc_seed_bundle", "lazy_static", @@ -2131,12 +2102,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" -[[package]] -name = "string-cases" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a31d23461f9e0fbe756cf9d5a36be93740fe12c8b094409a5f78f0f912ee2b6f" - [[package]] name = "strsim" version = "0.8.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index c632cc4..60e6950 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -25,7 +25,6 @@ thiserror = { workspace = true } tokio = { version = "1.12.0", features = [ "full" ] } hc_seed_bundle = "0.2.3" sodoken = "=0.0.11" -enum-variants-strings = "0.3.0" strum = { version = "0.26.3", features = ["derive", "strum_macros"] } [dependencies.argon2min]