From 4067fbe8f018eae1eeb0ef13ca95bfb05c57b9d2 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 6 Nov 2023 22:19:01 +0000 Subject: [PATCH] chore: fix check-external-types for rt --- actix-rt/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 4e55eb1b..49c96eae 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -8,7 +8,7 @@ authors = [ description = "Tokio-based single-threaded async runtime for the Actix ecosystem" keywords = ["async", "futures", "io", "runtime"] homepage = "https://actix.rs" -repository = "https://github.com/actix/actix-net.git" +repository = "https://github.com/actix/actix-net" categories = ["network-programming", "asynchronous"] license = "MIT OR Apache-2.0" edition.workspace = true @@ -16,6 +16,7 @@ rust-version.workspace = true [package.metadata.cargo_check_external_types] allowed_external_types = [ + "actix_macros::*", "tokio::*", ]