Skip to content

Commit

Permalink
Consistently order features before optional, like cargo add
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Apr 7, 2024
1 parent 1a7c6e4 commit 98c3640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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 }
Expand Down

0 comments on commit 98c3640

Please sign in to comment.