From 752716f29222a54dfd4611468f8b104fb6f82edd Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Mon, 15 Jun 2020 19:14:25 +0200 Subject: [PATCH] Not sure it changes anything but... --- Cargo.toml | 3 +-- components/config/Cargo.toml | 1 + components/rebuild/Cargo.toml | 1 + components/rendering/Cargo.toml | 1 + components/site/Cargo.toml | 1 + components/utils/Cargo.toml | 1 + 6 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 80020a93..3a4fdb4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,8 +10,7 @@ homepage = "https://www.getzola.org" repository = "https://github.com/getzola/zola" keywords = ["static", "site", "generator", "blog"] -include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md", "!test_site*/", "sublime/syntaxes/newlines.packdump", "sublime/themes/all.themedump"] -exclude = ["test_site*/", "sublime", "docs", "components/site/benches/", "**/tests/*", "**/benches/*"] +include = ["src/**/*", "LICENSE", "README.md"] [build-dependencies] clap = "2" diff --git a/components/config/Cargo.toml b/components/config/Cargo.toml index 7fcf6ba7..43bbcddb 100644 --- a/components/config/Cargo.toml +++ b/components/config/Cargo.toml @@ -3,6 +3,7 @@ name = "config" version = "0.1.0" authors = ["Vincent Prouillet "] edition = "2018" +include = ["src/**/*"] [dependencies] toml = "0.5" diff --git a/components/rebuild/Cargo.toml b/components/rebuild/Cargo.toml index 5dca9b19..20c76e79 100644 --- a/components/rebuild/Cargo.toml +++ b/components/rebuild/Cargo.toml @@ -3,6 +3,7 @@ name = "rebuild" version = "0.1.0" authors = ["Vincent Prouillet "] edition = "2018" +include = ["src/lib.rs"] [dependencies] errors = { path = "../errors" } diff --git a/components/rendering/Cargo.toml b/components/rendering/Cargo.toml index 5e30e0de..40b99221 100644 --- a/components/rendering/Cargo.toml +++ b/components/rendering/Cargo.toml @@ -3,6 +3,7 @@ name = "rendering" version = "0.1.0" authors = ["Vincent Prouillet "] edition = "2018" +include = ["src/**/*"] [dependencies] tera = { version = "1", features = ["preserve_order"] } diff --git a/components/site/Cargo.toml b/components/site/Cargo.toml index 3174e873..300c6af5 100644 --- a/components/site/Cargo.toml +++ b/components/site/Cargo.toml @@ -3,6 +3,7 @@ name = "site" version = "0.1.0" authors = ["Vincent Prouillet "] edition = "2018" +include = ["src/**/*"] [dependencies] tera = "1" diff --git a/components/utils/Cargo.toml b/components/utils/Cargo.toml index 4c79f6ff..ad00fc10 100644 --- a/components/utils/Cargo.toml +++ b/components/utils/Cargo.toml @@ -3,6 +3,7 @@ name = "utils" version = "0.1.0" authors = ["Vincent Prouillet "] edition = "2018" +include = ["src/**/*"] [dependencies] tera = "1"