summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Tay <sam.chong.tay@pm.me>2021-01-26 12:21:01 -0500
committerGitHub <noreply@github.com>2021-01-26 12:21:01 -0500
commit6b3b043c736873e7897ade5e467593944de77c51 (patch)
treec44c38f3b1717d55aad9ca250b8d4e99da212da3
parente467e720c15baea9a25505df5f25abe86a3defa1 (diff)
parent93a9359fed7df99f1d115865f09638083ec7a061 (diff)
Merge pull request #14 from Byron/master
Reduce crate size considerably using 'include' directive in manifest
-rw-r--r--Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a12809d..c5026aa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,6 +10,7 @@ keywords = ["cli", "tui", "stackoverflow", "stackexchange"]
categories = ["command-line-utilities"]
authors = ["Sam Tay <sam.chong.tay@pm.me>"]
edition = "2018"
+include = ["src/**/*", "themes/*", "LICENSE", "README.md", "CHANGELOG.md"]
[badges]
appveyor = { repository = "samtay/so", branch = "master", service = "github" }
@@ -20,10 +21,12 @@ criterion = "0.3"
[[bench]]
name = "html_parsing"
+path = "html_parsing.rs"
harness = false
[[bench]]
name = "md_parsing"
+path = "md_parsing.rs"
harness = false
[dependencies]