From 1ff2c0a2d2327940807b58fd5527522383fdaab6 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Sat, 15 Mar 2025 18:42:04 -0400 Subject: [PATCH] Cargo.toml: sort dependencies --- Cargo.toml | 2 +- test/integration-test/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1d77e5fe..e56bdd42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,9 +60,9 @@ edition = "2024" # them to do that, but in the meantime we need to be careful. [workspace.dependencies] anyhow = { version = "1", default-features = false } -base64 = { version = "0.22.1", default-features = false } assert_matches = { version = "1.5.0", default-features = false } async-io = { version = "2.0", default-features = false } +base64 = { version = "0.22.1", default-features = false } bindgen = { version = "0.71", default-features = false } bitflags = { version = "2.2.1", default-features = false } bytes = { version = "1", default-features = false } diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index 5c327543..09f73535 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -18,10 +18,10 @@ assert_matches = { workspace = true } aya = { path = "../../aya", version = "^0.13.1", default-features = false } aya-log = { path = "../../aya-log", version = "^0.2.1", default-features = false } aya-obj = { path = "../../aya-obj", version = "^0.2.1", default-features = false } -integration-common = { path = "../integration-common", features = ["user"] } env_logger = { workspace = true } epoll = { workspace = true } futures = { workspace = true, features = ["std"] } +integration-common = { path = "../integration-common", features = ["user"] } libc = { workspace = true } log = { workspace = true } netns-rs = { workspace = true }