From 1ff241d3d83f247731acbc8c6fad8d5961659eff Mon Sep 17 00:00:00 2001 From: Kamil Sopko Date: Thu, 25 Jun 2026 14:57:08 +0200 Subject: [PATCH] chore: add /.cline/** to workspace Cargo.toml exclude, remove from sub-crates exclude patterns are relative to each package root, not the workspace root. The /.cline/** entry only has effect in the root workspace crate, where the .cline folder actually exists. The sub-crates had it but it never matched anything. --- Cargo.toml | 1 + crates/xtax-blob-storage/Cargo.toml | 1 - crates/xtax-encryption/Cargo.toml | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b72c86..fba6031 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ keywords = ["xtax", "facade", "infrastructure"] categories = ["development-tools"] exclude = [ + "/.cline/**", "/.github/**", "/.idea/**", "/crates/**", diff --git a/crates/xtax-blob-storage/Cargo.toml b/crates/xtax-blob-storage/Cargo.toml index f4e3128..638fd8a 100644 --- a/crates/xtax-blob-storage/Cargo.toml +++ b/crates/xtax-blob-storage/Cargo.toml @@ -12,7 +12,6 @@ documentation = "https://docs.rs/xtax-blob-storage" readme = "README.md" keywords = ["blob", "storage", "s3", "filesystem", "encryption"] categories = ["filesystem", "web-programming"] -exclude = ["/.cline/**"] [package.metadata.docs.rs] all-features = true diff --git a/crates/xtax-encryption/Cargo.toml b/crates/xtax-encryption/Cargo.toml index 7c58e87..02c93d3 100644 --- a/crates/xtax-encryption/Cargo.toml +++ b/crates/xtax-encryption/Cargo.toml @@ -12,7 +12,6 @@ documentation = "https://docs.rs/xtax-encryption" readme = "README.md" keywords = ["encryption", "trait", "blob", "storage"] categories = ["cryptography"] -exclude = ["/.cline/**"] [package.metadata.docs.rs] all-features = true