From ee0a252be138a761c9b9d8e6f92b64df754f4275 Mon Sep 17 00:00:00 2001 From: Sebastian Goll Date: Mon, 9 Dec 2024 13:17:45 +0100 Subject: [PATCH] Fix order of dependencies in Cargo.toml --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a1b4b37..353300a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,14 +36,14 @@ x509-certificate = { version = "0.24.0", optional = true } [dev-dependencies] anyhow = "1.0.79" -futures = "0.3.30" env_logger = "0.11.1" +futures = "0.3.30" +itertools = "0.13.0" rand = "0.8.5" time = { version = "0.3.31", features = ["macros"] } # Enable multi-threaded runtime in examples to increase the chances of finding # problems with our use of open62541. tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] } -itertools = "0.13.0" [features] default = ["serde", "time", "tokio"]