|
10 | 10 | //!
|
11 | 11 | //! ```toml
|
12 | 12 | //! [dependencies]
|
13 |
| -//! libftd2xx-ffi = "~0.4.1" |
| 13 | +//! libftd2xx-ffi = "~0.5.0" |
14 | 14 | //! ```
|
15 | 15 | //!
|
16 | 16 | //! The default feature set will use pre-generated bindings.
|
|
20 | 20 | //! feature flag.
|
21 | 21 | //! ```toml
|
22 | 22 | //! [dependencies]
|
23 |
| -//! libftd2xx-ffi = { version = "~0.4.1", features = ["bindgen"] } |
| 23 | +//! libftd2xx-ffi = { version = "~0.5.0", features = ["bindgen"] } |
24 | 24 | //! ```
|
25 | 25 | //!
|
26 | 26 | //! Bindgen has additional dependencies that must be installed in order to
|
|
39 | 39 | //! These targets are provided, but they are untested.
|
40 | 40 | //! Use at your own risk.
|
41 | 41 | //!
|
42 |
| -//! * `aarch64-unknown-linux-gnu` |
43 |
| -//! * `aarch64-unknown-linux-musl` |
44 |
| -//! * `arm-unknown-linux-gnueabihf` |
45 |
| -//! * `arm-unknown-linux-musleabihf` |
46 |
| -//! * `armv7-unknown-linux-gnueabihf` |
47 |
| -//! * `armv7-unknown-linux-musleabihf` |
48 |
| -//! * `i686-pc-windows-msvc` |
49 |
| -//! * `i686-unknown-linux-gnu` |
50 |
| -//! * `i686-unknown-linux-musl` |
| 42 | +//! * `aarch64-unknown-linux-gnu` (static linking only) |
| 43 | +//! * `aarch64-unknown-linux-musl` (static linking only) |
| 44 | +//! * `arm-unknown-linux-gnueabihf` (static linking only) |
| 45 | +//! * `arm-unknown-linux-musleabihf` (static linking only) |
| 46 | +//! * `armv7-unknown-linux-gnueabihf` (static linking only) |
| 47 | +//! * `armv7-unknown-linux-musleabihf` (static linking only) |
| 48 | +//! * `i686-pc-windows-msvc` (dynamic linking only) |
| 49 | +//! * `i686-unknown-linux-gnu` (static linking only) |
| 50 | +//! * `i686-unknown-linux-musl` (static linking only) |
51 | 51 | //!
|
52 | 52 | //! # References
|
53 | 53 | //!
|
|
85 | 85 | //! [FTDI Drivers Installation Guide for Linux]: http://www.ftdichip.cn/Support/Documents/AppNotes/AN_220_FTDI_Drivers_Installation_Guide_for_Linux.pdf
|
86 | 86 | //! [libftd2xx]: https://github.com/newAM/libftd2xx-rs
|
87 | 87 | //! [Rust Edition Guide]: https://doc.rust-lang.org/edition-guide/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html
|
88 |
| -#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.4.1")] |
| 88 | +#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.5.0")] |
89 | 89 | #![allow(non_upper_case_globals)]
|
90 | 90 | #![allow(non_camel_case_types)]
|
91 | 91 | #![allow(non_snake_case)]
|
|
0 commit comments