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"