From 98c3640760611a7b0312c3fcbd9032ba20667913 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Tue, 2 Apr 2024 14:08:12 +0200 Subject: [PATCH] Consistently order features before optional, like `cargo add` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a7615e51..636ffa29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ unstable-locales = ["dep:pure-rust-locales"] [dependencies] serde = { version = "1.0.99", default-features = false, optional = true } pure-rust-locales = { version = "0.8", optional = true } -rkyv = { version = "0.7.43", optional = true, default-features = false } +rkyv = { version = "0.7.43", default-features = false, optional = true } arbitrary = { version = "1.0.0", features = ["derive"], optional = true } [target.'cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))'.dependencies] @@ -55,7 +55,7 @@ windows-targets = { version = "0.52", optional = true } windows-bindgen = { version = "0.55" } # The MSRV of its windows-metatada dependency is 1.70 [target.'cfg(unix)'.dependencies] -iana-time-zone = { version = "0.1.45", optional = true, features = ["fallback"] } +iana-time-zone = { version = "0.1.45", features = ["fallback"], optional = true } [target.'cfg(target_os = "android")'.dependencies] android-tzdata = { version = "0.1.1", optional = true }