From cba98bde10d193768a28131066c5ecfc08417b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dario=20Vladovi=C4=87?= Date: Thu, 1 Apr 2021 18:45:13 +0200 Subject: [PATCH] chore: filter crate/s contents (#2495) --- Cargo.toml | 3 ++- starship_module_config_derive/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9589c0826..213f602f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,8 @@ build = "build.rs" description = """ The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️ """ -exclude = ["docs/**/*", "media/**/*"] +# Keep `/` in front of `README.md` to exclude localized readmes +include = ["src/**/*", "build.rs", "Cross.toml", "LICENSE", "/README.md"] [badges] is-it-maintained-issue-resolution = { repository = "starship/starship" } diff --git a/starship_module_config_derive/Cargo.toml b/starship_module_config_derive/Cargo.toml index 642d424ee..c798ef9bf 100644 --- a/starship_module_config_derive/Cargo.toml +++ b/starship_module_config_derive/Cargo.toml @@ -13,7 +13,7 @@ categories = ["command-line-utilities"] description = """ The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️ """ -exclude = ["docs/**/*"] +include = ["src/**/*", "LICENSE", "README.md"] [lib] name = "starship_module_config_derive"