File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
26
- Fixed ` build.rs ` script to handle cross compilation.
27
27
28
28
[ Unreleased ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...HEAD
29
- [ 0.5.0 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.5.0
29
+ [ 0.5.1 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.5.0
30
30
[ 0.5.0 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.0...0.4.1
31
31
[ 0.4.1 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.4.0...0.4.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " libftd2xx-ffi"
3
- version = " 0.5.0 " # remember to update html_root_url
3
+ version = " 0.5.1 " # remember to update html_root_url
4
4
description = " Rust FFI bindings to the FTDI D2XX drivers."
5
5
keywords = [" ftdi" , " ffi" , " usb" ]
6
6
categories = [" external-ffi-bindings" ]
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The static library is distributed in this crate with permission from FTDI.
17
17
18
18
``` toml
19
19
[dependencies ]
20
- libftd2xx-ffi = " ~0.5.0 "
20
+ libftd2xx-ffi = " ~0.5.1 "
21
21
```
22
22
23
23
The default feature set will use pre-generated bindings.
@@ -27,7 +27,7 @@ The bindings can also be generated during compilation using the [bindgen]
27
27
feature flag.
28
28
``` toml
29
29
[dependencies ]
30
- libftd2xx-ffi = { version = " ~0.5.0 " , features = [" bindgen" ] }
30
+ libftd2xx-ffi = { version = " ~0.5.1 " , features = [" bindgen" ] }
31
31
```
32
32
33
33
Bindgen has additional dependencies that must be installed in order to
Original file line number Diff line number Diff line change 10
10
//!
11
11
//! ```toml
12
12
//! [dependencies]
13
- //! libftd2xx-ffi = "~0.5.0 "
13
+ //! libftd2xx-ffi = "~0.5.1 "
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.5.0 ", features = ["bindgen"] }
23
+ //! libftd2xx-ffi = { version = "~0.5.1 ", features = ["bindgen"] }
24
24
//! ```
25
25
//!
26
26
//! Bindgen has additional dependencies that must be installed in order to
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.5.0 " ) ]
88
+ #![ doc( html_root_url = "https://docs.rs/libftd2xx-ffi/0.5.1 " ) ]
89
89
#![ allow( non_upper_case_globals) ]
90
90
#![ allow( non_camel_case_types) ]
91
91
#![ allow( non_snake_case) ]
You can’t perform that action at this time.
0 commit comments