This repository was archived by the owner on Jul 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +14
-12
lines changed
Expand file tree Collapse file tree 7 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ sudo: required
22language : generic
33services :
44 - docker
5-
5+ addons :
6+ apt :
7+ update : true
68jobs :
79 include :
810 - stage : test
Original file line number Diff line number Diff line change 11[package ]
22name = " libzfs-sys"
3- version = " 0.5.5 "
3+ version = " 0.5.6 "
44description = " Rust bindings to libzfs"
55license = " MIT"
66repository = " https://github.com/intel-hpdd/rust-libzfs"
Original file line number Diff line number Diff line change 11# libzfs-sys
22
3- Bindings to libzfs 0.7.8 . Uses [ bindgen] ( https://github.com/rust-lang-nursery/rust-bindgen ) .
3+ Bindings to libzfs 0.7.9 . Uses [ bindgen] ( https://github.com/rust-lang-nursery/rust-bindgen ) .
44
55## Overview
66
@@ -9,7 +9,7 @@ to the src dir. To rebuild bindings run `cargo build`.
99
1010## ZFS version
1111
12- These bindings were compiled against ZFS 0.7.8 . As ` libzfs ` is not a stable interface,
12+ These bindings were compiled against ZFS 0.7.9 . As ` libzfs ` is not a stable interface,
1313they should only be used against this version.
1414
1515## OS
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ fn main() {
9393 . whitelist_function ( "zfs_validate_name" )
9494 . whitelist_function ( "zprop_free_list" )
9595 . clang_arg ( "-I/usr/lib/gcc/x86_64-redhat-linux/4.8.2/include/" )
96- . clang_arg ( "-I/usr/src/zfs-0.7.8 /lib/libspl/include/" )
97- . clang_arg ( "-I/usr/src/zfs-0.7.8 /include/" )
96+ . clang_arg ( "-I/usr/src/zfs-0.7.9 /lib/libspl/include/" )
97+ . clang_arg ( "-I/usr/src/zfs-0.7.9 /include/" )
9898 . generate ( )
9999 . expect ( "Unable to generate bindings" ) ;
100100
Original file line number Diff line number Diff line change 1515//! to the src dir. To rebuild bindings run `cargo build`.
1616//!
1717//! ## ZFS version
18- //! These bindings were compiled against ZFS 0.7.8 . As `libzfs` is not a stable interface,
18+ //! These bindings were compiled against ZFS 0.7.9 . As `libzfs` is not a stable interface,
1919//! they should only be used against this version.
2020//!
2121//! ## OS
Original file line number Diff line number Diff line change 11[package ]
22name = " libzfs"
3- version = " 0.6.6 "
3+ version = " 0.6.7 "
44authors = [" IML Team <iml@intel.com>" ]
55description = " Rust wrapper around libzfs-sys"
66license = " MIT"
77
88[dependencies ]
9- libzfs-sys = { path = " ../libzfs-sys" , version = " 0.5.5 " }
9+ libzfs-sys = { path = " ../libzfs-sys" , version = " 0.5.6 " }
1010nvpair-sys = " 0.1"
1111serde = " 1.0"
1212serde_derive = " 1.0"
You can’t perform that action at this time.
0 commit comments