From 4bbbcf629d304c67840df7f3f2d8338a754e6d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Wed, 26 Jun 2024 22:45:30 +0200 Subject: [PATCH] Fix warning for default_features --- common/crypto/Cargo.toml | 2 +- common/nymsphinx/acknowledgements/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/crypto/Cargo.toml b/common/crypto/Cargo.toml index 09a7e413fd..043809957b 100644 --- a/common/crypto/Cargo.toml +++ b/common/crypto/Cargo.toml @@ -21,7 +21,7 @@ x25519-dalek = { version = "2.0", optional = true, features = ["static_secrets"] ed25519-dalek = { version = "2.1", features = ["rand_core"], optional = true } rand = { workspace = true, optional = true } serde_bytes = { version = "0.11.6", optional = true } -serde_crate = { version = "1.0", optional = true, default_features = false, features = ["derive"], package = "serde" } +serde_crate = { version = "1.0", optional = true, default-features = false, features = ["derive"], package = "serde" } subtle-encoding = { workspace = true, features = ["bech32-preview"] } thiserror = { workspace = true } zeroize = { workspace = true, optional = true, features = ["zeroize_derive"] } diff --git a/common/nymsphinx/acknowledgements/Cargo.toml b/common/nymsphinx/acknowledgements/Cargo.toml index 3d997c436f..0392445c41 100644 --- a/common/nymsphinx/acknowledgements/Cargo.toml +++ b/common/nymsphinx/acknowledgements/Cargo.toml @@ -9,7 +9,7 @@ repository = { workspace = true } [dependencies] rand = { workspace = true } -serde_crate = { version = "1.0", optional = true, default_features = false, features = ["derive"], package = "serde" } +serde_crate = { version = "1.0", optional = true, default-features = false, features = ["derive"], package = "serde" } generic-array = { workspace = true, optional = true, features = ["serde"] } thiserror = { workspace = true } zeroize = { workspace = true }