From 8e78b161654182b6950502a271a202b129244e92 Mon Sep 17 00:00:00 2001 From: Lucas Colombo Date: Mon, 22 Apr 2024 03:31:47 -0300 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A7=B9=20update=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 5 +++-- Cargo.toml | 5 +++-- rustlers/Cargo.toml | 1 + 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 955ae61..3e465d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1501,9 +1501,9 @@ dependencies = [ [[package]] name = "lool" -version = "0.1.4" +version = "0.2.0" source = "sparse+http://lugit.local/api/packages/lucodear/cargo/" -checksum = "4320ce16557a892f40c0a776371ac0c3cda2c9312c83065a4ab2a1facf571539" +checksum = "2f76ed1e53da60cca591a6811cfcda015b19d1976c85b89c708e5ea714a5fb41" dependencies = [ "bitflags 2.5.0", "chrono", @@ -2313,6 +2313,7 @@ dependencies = [ "eyre", "getset", "lool", + "tokio", "tokio-tungstenite", "tonic-build", ] diff --git a/Cargo.toml b/Cargo.toml index 8d41e8b..d38f7a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,9 +25,10 @@ path = "app/main.rs" members = [".", "migration", "entities", "grpc", "rustlers"] [workspace.dependencies] -lool = { version = "0.1.4", registry = "lugit" } # crates: disable-check +lool = { version = "0.2.0", registry = "lugit" } # crates: disable-check eyre = { version = "0.6.12", default-features = false } tokio-tungstenite = { version = "0.21.0" } +tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] } [dependencies] # internal @@ -40,8 +41,8 @@ eyre = { workspace = true, default-features = false, features = [ "auto-install", ] } lool = { workspace = true } +tokio = { workspace = true } # external -tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] } dotenvy = "0.15.7" chrono = "0.4.37" diff --git a/rustlers/Cargo.toml b/rustlers/Cargo.toml index cd0587e..da76124 100644 --- a/rustlers/Cargo.toml +++ b/rustlers/Cargo.toml @@ -12,6 +12,7 @@ path = "src/lib.rs" # workspace eyre = { workspace = true, default-features = false } tokio-tungstenite = { workspace = true } +tokio = { workspace = true } lool = { workspace = true, features = [ "logger", "sched.tokio",