File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ categories = ["development-tools::ffi"]
1111edition = " 2018"
1212
1313[dependencies ]
14- libffi-sys = { path = " ../libffi-sys-rs" , version = " ^2.2 " }
14+ libffi-sys = { path = " ../libffi-sys-rs" , version = " ^2.3 " }
1515libc = " 0.2.65"
1616
1717[features ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog] and this project adheres to
88[ Keep a Changelog ] : http://keepachangelog.com/en/1.0.0/
99[ Semantic Versioning ] : http://semver.org/spec/v2.0.0.html
1010
11- ## [ Unreleased ]
11+ ## [ 2.3.0 ] - 2023-04-26
1212
1313- Add support for loongarch64: https://github.com/tov/libffi-rs/pull/75
1414- Fix the build process to always use the local "configure" script: https://github.com/tov/libffi-rs/pull/76
Original file line number Diff line number Diff line change 11[package ]
22name = " libffi-sys"
3- version = " 2.2.1 "
3+ version = " 2.3.0 "
44authors = [" Jesse A. Tov <jesse.tov@gmail.com>" ]
55links = " ffi"
66build = " build/build.rs"
Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ a C libffi for you, add
3131
3232``` toml
3333[dependencies ]
34- libffi-sys = " 2.2.1 "
34+ libffi-sys = " 2.3.0 "
3535```
3636
3737to your ` Cargo.toml ` . If you want to use your system C libffi, then
3838
3939``` toml
4040[dependencies .libffi-sys ]
41- version = " 2.2.1 "
41+ version = " 2.3.0 "
4242features = [" system" ]
4343```
4444
Original file line number Diff line number Diff line change 1- #![ doc( html_root_url = "https://docs.rs/libffi-sys/2.2.1 " ) ]
1+ #![ doc( html_root_url = "https://docs.rs/libffi-sys/2.3.0 " ) ]
22//! Low-level Rust bindings for [libffi](https://sourceware.org/libffi/)
33//!
44//! The C libffi library provides two main facilities: assembling calls
2424//!
2525//! ```toml
2626//! [dependencies]
27- //! libffi-sys = "2.2.1 "
27+ //! libffi-sys = "2.3.0 "
2828//! ```
2929//!
3030//! to your `Cargo.toml`. If you want to use your system C libffi, then
3131//!
3232//! ```toml
3333//! [dependencies.libffi-sys]
34- //! version = "2.2.1 "
34+ //! version = "2.3.0 "
3535//! features = ["system"]
3636//! ```
3737//!
You can’t perform that action at this time.
0 commit comments