Exclude the .github directory in the published package.

The .github, .rustfmt.toml, and .gitignore files aren't needed by
downstream users of the crate, so exclude them from the published
package.
This commit is contained in:
Dan Gohman
2022-01-27 04:31:51 -08:00
parent 3673970e70
commit feafe08040
+1 -1
View File
@@ -9,7 +9,7 @@ repository = "https://github.com/sunfishcode/linux-raw-sys"
edition = "2018"
keywords = ["linux", "uapi", "ffi"]
categories = ["external-ffi-bindings"]
exclude = ["gen"]
exclude = ["/gen", "/.*"]
[dependencies]
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }