Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit b0960fd

Browse files
author
Joe Grund
committed
bump version
Signed-off-by: Joe Grund <jgrund@whamcloud.io>
1 parent 4f12022 commit b0960fd

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libzfs-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libzfs-sys"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
description = "Rust bindings to libzfs"
55
license = "MIT"
66
repository = "https://github.com/whamcloud/rust-libzfs"

libzfs-sys/build.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ extern crate pkg_config;
88
use std::env;
99

1010
fn main() {
11+
if cfg!(target_os = "macos") {
12+
return;
13+
}
14+
1115
let out_file = env::current_dir().unwrap().join("src").join("bindings.rs");
1216

1317
env::set_var("LIBCLANG_PATH", "/opt/llvm-5.0.0/lib64/");

libzfs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "libzfs"
3-
version = "0.6.12"
3+
version = "0.6.13"
44
authors = ["IML Team <iml@whamcloud.com>"]
55
description = "Rust wrapper around libzfs-sys"
66
license = "MIT"
77

88
[dependencies]
9-
libzfs-sys = { path = "../libzfs-sys", version = "0.5.7"}
9+
libzfs-sys = { path = "../libzfs-sys", version = "0.5.9"}
1010
libzfs-types = { path = "../libzfs-types", version = "0.1.1" }
1111
nvpair-sys = "0.1"
1212
serde = "1.0"

0 commit comments

Comments
 (0)