diff --git a/Cargo.toml b/Cargo.toml index 7b91c1b..df5d3aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ repository = "https://github.com/DDtKey/protect-endpoints" authors = ["DDtKey "] [workspace.dependencies] -actix-web-grants = { path = "actix-web-grants", version = "4.0.0" } -rocket-grants = { path = "rocket-grants", version = "0.1.1" } -poem-grants = { path = "poem-grants", version = "1.0.0" } -protect-endpoints-proc-macro = { path = "proc-macro", version = "0.1.0" } +protect-endpoints-proc-macro = { version = "0.1.0" } + +[patch.crates-io] +protect-endpoints-proc-macro = { path = "proc-macro" } diff --git a/proc-macro/Cargo.toml b/proc-macro/Cargo.toml index 9a8a4b3..ef3d377 100644 --- a/proc-macro/Cargo.toml +++ b/proc-macro/Cargo.toml @@ -31,6 +31,6 @@ actix-web = { version = "4.4.0" } poem = { version = "1.3.59" } poem-openapi = { version = "3.0.6" } serde = { version = "1.0", features = ["derive"] } -actix-web-grants = { workspace = true } -rocket-grants = { workspace = true } -poem-grants = { workspace = true } +actix-web-grants = { path = "../actix-web-grants" } +rocket-grants = { path = "../rocket-grants" } +poem-grants = { path = "../poem-grants" }