From 7dd86e3464c01f8f18afdb6510fc8361af781c2a Mon Sep 17 00:00:00 2001 From: video-prize-ranch Date: Sat, 30 Apr 2022 12:01:45 -0400 Subject: [PATCH] Fix livestreams --- Cargo.lock | 3 +++ Cargo.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index d7a3530..6f089fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1038,6 +1038,9 @@ version = "0.1.0" dependencies = [ "actix-web", "awc", + "bytes", + "lazy_static", + "regex", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 3063023..cf01251 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,9 @@ edition = "2021" [dependencies] actix-web = { version = "4" } awc = { version = "3", features = ["rustls"] } +bytes = "1.1.0" +lazy_static = "1.4.0" +regex = "1.5.5" [source.crates-io] replace-with = "vendored-sources"