Build script not needed for published crate

This commit is contained in:
David Tolnay 2020-09-11 10:44:07 -07:00
parent cc7ced4268
commit d4b1ceeb01
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
4 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,7 @@ edition = "2018"
license = "MIT OR Apache-2.0"
description = "C++ code generator for integrating `cxx` crate into a Cargo build."
repository = "https://github.com/dtolnay/cxx"
exclude = ["build.rs"]
keywords = ["ffi"]
categories = ["development-tools::ffi"]

View File

@ -6,6 +6,7 @@ edition = "2018"
license = "MIT OR Apache-2.0"
description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
repository = "https://github.com/dtolnay/cxx"
exclude = ["build.rs"]
keywords = ["ffi"]
categories = ["development-tools::ffi"]

View File

@ -6,6 +6,7 @@ edition = "2018"
license = "MIT OR Apache-2.0"
description = "C++ code generator for integrating `cxx` crate into higher level tools."
repository = "https://github.com/dtolnay/cxx"
exclude = ["build.rs"]
keywords = ["ffi"]
categories = ["development-tools::ffi"]

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "MIT OR Apache-2.0"
description = "Implementation detail of the `cxx` crate."
repository = "https://github.com/dtolnay/cxx"
exclude = ["README.md"]
exclude = ["build.rs", "README.md"]
keywords = ["ffi"]
categories = ["development-tools::ffi"]