Skip to content

Commit 502c072

Browse files
authored
Don't include "/fixtures" in published packages (gimli-rs#661)
"/fixtures" is too large for publishing, so don't include it. Currently all of "/tests" and "/benches" require fixtures, so don't include them either. Also change from using "exclude" to using "include"
1 parent 86159ed commit 502c072

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Cargo.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ categories = ["development-tools::debugging", "development-tools::profiling", "p
55
description = "A library for reading and writing the DWARF debugging format."
66
documentation = "https://docs.rs/gimli"
77
edition = "2018"
8-
exclude = ["/releases/*", "/.github"]
8+
include = [
9+
"/CHANGELOG.md",
10+
"/Cargo.toml",
11+
"/examples",
12+
"/LICENSE-APACHE",
13+
"/LICENSE-MIT",
14+
"/README.md",
15+
"/src",
16+
]
917
keywords = ["DWARF", "debug", "ELF", "eh_frame"]
1018
license = "MIT OR Apache-2.0"
1119
readme = "./README.md"

0 commit comments

Comments
 (0)