summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2022-10-16 20:47:06 +0200
committerEmilio Cobos Álvarez <emilio@crisal.io>2022-10-16 21:29:41 +0200
commit2c01810c3af78c087d99fdf484d879f5f8d7f2cf (patch)
treeda0652b7a010f449ce519aeae8dd53d1fd91ae52
parent6f6f9fb402846e94662a6cfaa9f2e322beb5f1a1 (diff)
Remove no-longer-correct include entry in Cargo.toml.
-rw-r--r--bindgen-cli/Cargo.toml5
-rw-r--r--bindgen-tests/Cargo.toml5
-rw-r--r--bindgen/Cargo.toml10
3 files changed, 0 insertions, 20 deletions
diff --git a/bindgen-cli/Cargo.toml b/bindgen-cli/Cargo.toml
index 3ebf4a3f..4e9d6798 100644
--- a/bindgen-cli/Cargo.toml
+++ b/bindgen-cli/Cargo.toml
@@ -16,11 +16,6 @@ edition = "2018"
# If you change this, also update README.md and msrv in .github/workflows/bindgen.yml
rust-version = "1.57.0"
-include = [
- "Cargo.toml",
- "build.rs",
-]
-
[[bin]]
path = "main.rs"
name = "bindgen"
diff --git a/bindgen-tests/Cargo.toml b/bindgen-tests/Cargo.toml
index 53dfca15..a9b258b9 100644
--- a/bindgen-tests/Cargo.toml
+++ b/bindgen-tests/Cargo.toml
@@ -4,11 +4,6 @@ edition = "2018"
version = "0.1.0"
publish = false
-include = [
- "Cargo.toml",
- "build.rs",
-]
-
[dev-dependencies]
bindgen = { path = "../bindgen" }
diff = "0.1"
diff --git a/bindgen/Cargo.toml b/bindgen/Cargo.toml
index 3965ad4d..e2280389 100644
--- a/bindgen/Cargo.toml
+++ b/bindgen/Cargo.toml
@@ -20,16 +20,6 @@ build = "build.rs"
# If you change this, also update README.md and msrv in .github/workflows/bindgen.yml
rust-version = "1.57.0"
-include = [
- "LICENSE",
- "README.md",
- "Cargo.toml",
- "build.rs",
- "src/*.rs",
- "src/**/*.rs",
-]
-
-
[lib]
name = "bindgen"
path = "./lib.rs"