Consistently order features before optional, like cargo add

This commit is contained in:
Paul Dicker 2024-04-02 14:08:12 +02:00 committed by Paul Dicker
parent 1a7c6e4fe4
commit 98c3640760

View File

@ -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 }