feat: Make Cargo.toml source locations explicit
This allows cargo metadata to operate on it without adding the source files to the build. (A choice which will save a few rebuilds of the manual) (cherry picked from commit 1779295f3e13cc15f8422d52a3753bb927ac8fa7)
This commit is contained in:
parent
5355b663c0
commit
9213c9a5a0
4 changed files with 4 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ edition = "2021"
|
|||
build = "build.rs"
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
||||
[build-dependencies]
|
||||
bindgen = "0.69.4"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.79"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.79"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.79"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue