From e9448cc6854b32ed9fa8553a590b42b92f84aa69 Mon Sep 17 00:00:00 2001 From: giangndm <45644921+giangndm@users.noreply.github.com> Date: Sat, 18 Nov 2023 01:52:18 +0700 Subject: [PATCH] chore: avoid using * version (#68) --- Cargo.toml | 2 +- examples/Cargo.toml | 2 +- packages/integration_tests/Cargo.toml | 6 +++--- packages/services/pub_sub/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 12352d98..52c3a936 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,6 +54,6 @@ log = "0.4" rand = "0.8" parking_lot = "0.12" env_logger = "0.10" -allocation-counter = { version = "*" } +allocation-counter = { version = "0.8.1" } clap = { version = "4.4.8", features = ["derive", "env"] } mockall = "0.11.4" \ No newline at end of file diff --git a/examples/Cargo.toml b/examples/Cargo.toml index f61fa30e..79b59469 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -22,4 +22,4 @@ parking_lot = { workspace = true } serde = { workspace = true } clap = { workspace = true } rand = { workspace = true } -bytes = "*" +bytes = "1.5.0" diff --git a/packages/integration_tests/Cargo.toml b/packages/integration_tests/Cargo.toml index 38c51314..1c5379b5 100644 --- a/packages/integration_tests/Cargo.toml +++ b/packages/integration_tests/Cargo.toml @@ -11,8 +11,8 @@ publish = false [dev-dependencies] atm0s-sdn = { workspace = true, features = ["all"] } atm0s-sdn-transport-vnet = { workspace = true } -bytes = "*" -log = "*" -env_logger = "*" +bytes = "1.5.0" +log = "0.4.20" +env_logger = "0.10.1" allocation-counter = { workspace = true } async-std = { workspace = true } \ No newline at end of file diff --git a/packages/services/pub_sub/Cargo.toml b/packages/services/pub_sub/Cargo.toml index f71de61f..f5962e49 100644 --- a/packages/services/pub_sub/Cargo.toml +++ b/packages/services/pub_sub/Cargo.toml @@ -18,4 +18,4 @@ atm0s-sdn-network = { workspace = true } async-std = { workspace = true } serde = { workspace = true } parking_lot = { workspace = true } -bytes = "*" \ No newline at end of file +bytes = "1.5.0" \ No newline at end of file