other: exclude some files in Cargo.toml (#759)
Excludes unnecessary files from being included in `Cargo.toml`. This mostly consists of files like mkdocs and asset files for the README.
This commit is contained in:
parent
9116f5277f
commit
2a183c642b
10
Cargo.toml
10
Cargo.toml
|
@ -12,6 +12,16 @@ documentation = "https://clementtsang.github.io/bottom/stable"
|
|||
readme = "README.md"
|
||||
default-run = "btm"
|
||||
build = "build.rs"
|
||||
exclude = [
|
||||
".all-contributorsrc",
|
||||
".github/",
|
||||
".markdownlint.json",
|
||||
"assets/",
|
||||
"codecov.yml",
|
||||
"deployment/",
|
||||
"docs/",
|
||||
"sample_configs/"
|
||||
]
|
||||
|
||||
[[bin]]
|
||||
name = "btm"
|
||||
|
|
Loading…
Reference in New Issue