Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust-bindgen
/
refs/heads/upstream/try
/
.
/
book
/
src
/
tutorial-1.md
blob: 161b1c55462ef0e7565b7ee34c4d039cc4e8fbbb [
file
] [
view
] [
edit
]
# Add `bindgen` as a Build Dependency
Declare
a build
-
time dependency on
`bindgen`
by
adding it to the
`[build-dependencies]`
section of
our
crate
's `Cargo.toml` metadata file:
```toml
[build-dependencies]
bindgen = "0.26.3"
```