From 739ab1ebf2e26a81329572d84ce7723498834ea6 Mon Sep 17 00:00:00 2001 From: Segev Finer Date: Wed, 9 Mar 2022 10:05:02 +0200 Subject: [PATCH] build: Add /starship.exe.manifest to Cargo.toml include (#3713) * build: Add /starship.exe.manifest to Cargo.toml include Closes #3709 * Make dprint happy * Make dprint happy... --- Cargo.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 01cb44050..4ce445f91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,15 @@ documentation = "https://starship.rs/guide/" edition = "2021" homepage = "https://starship.rs" # Keep `/` in front of `README.md` to exclude localized readmes -include = ["src/**/*", "build.rs", "Cross.toml", "LICENSE", "/README.md", "docs/.vuepress/public/presets/toml/"] +include = [ + "src/**/*", + "/starship.exe.manifest", + "build.rs", + "Cross.toml", + "LICENSE", + "/README.md", + "docs/.vuepress/public/presets/toml/", +] keywords = ["prompt", "shell", "bash", "fish", "zsh"] license = "ISC" readme = "README.md"