diff options
author | Georgio Nicolas <me@georgio.xyz> | 2019-06-13 19:39:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-13 19:39:03 +0300 |
commit | 1c6a179f9201fa08ade314477fd0a0dbf3f16517 (patch) | |
tree | 3dc3cf8b91308c293991e0ef39a174fd3754d112 | |
parent | 16614210ba16dc885b2952529990c0a74663a719 (diff) |
Update bindgen version
-rw-r--r-- | book/src/tutorial-1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/tutorial-1.md b/book/src/tutorial-1.md index e8082125..3d5e751b 100644 --- a/book/src/tutorial-1.md +++ b/book/src/tutorial-1.md @@ -4,12 +4,12 @@ First we need to declare a build-time dependency on `bindgen` by adding it to the `[build-dependencies]` section of our crate's `Cargo.toml` file. Please always use the latest version of `bindgen`, it has the most fixes and -best compatibility. At the time of writing the latest bindgen is `0.49.0`, but +best compatibility. At the time of writing the latest bindgen is `0.49.2`, but you can always check [the bindgen page of crates.io](https://crates.io/crates/bindgen) to verify the latest version if you're unsure. ```toml [build-dependencies] -bindgen = "0.49.0" +bindgen = "0.49.2" ``` |