From 5b155814807284776e231373333c44d9c02e4f42 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Mon, 3 Apr 2023 16:01:16 -0400 Subject: [PATCH] style: alphabetize `dev-dependencies` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e01d506882..c7ee98e275 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,15 +68,15 @@ unicode-xid = { version = "0.2.3", optional = true } bincode = "1" criterion = { version = "0.3", features = [] } diff = "0.1" +env_logger = "0.9" hlsl-snapshots = { path = "./xtask/hlsl-snapshots"} # Require at least version 0.7.1 of ron, this version changed how floating points are # serialized by forcing them to always have the decimal part, this makes it backwards # incompatible with our tests because we do a syntatic diff and not a semantic one. ron = "~0.7.1" +rspirv = { version = "0.11", git = "https://github.com/gfx-rs/rspirv", rev = "b969f175d5663258b4891e44b76c1544da9661ab" } serde = { version = "1.0", features = ["derive"] } spirv = { version = "0.2", features = ["deserialize"] } -rspirv = { version = "0.11", git = "https://github.com/gfx-rs/rspirv", rev = "b969f175d5663258b4891e44b76c1544da9661ab" } -env_logger = "0.9" [workspace] members = [".", "cli"]