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

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Grund <[email protected]>
  • Loading branch information
jgrund committed Nov 12, 2018
1 parent 4f12022 commit b0960fd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libzfs-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libzfs-sys"
version = "0.5.8"
version = "0.5.9"
description = "Rust bindings to libzfs"
license = "MIT"
repository = "https://github.com/whamcloud/rust-libzfs"
Expand Down
4 changes: 4 additions & 0 deletions libzfs-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ extern crate pkg_config;
use std::env;

fn main() {
if cfg!(target_os = "macos") {
return;
}

let out_file = env::current_dir().unwrap().join("src").join("bindings.rs");

env::set_var("LIBCLANG_PATH", "/opt/llvm-5.0.0/lib64/");
Expand Down
4 changes: 2 additions & 2 deletions libzfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "libzfs"
version = "0.6.12"
version = "0.6.13"
authors = ["IML Team <[email protected]>"]
description = "Rust wrapper around libzfs-sys"
license = "MIT"

[dependencies]
libzfs-sys = { path = "../libzfs-sys", version = "0.5.7"}
libzfs-sys = { path = "../libzfs-sys", version = "0.5.9"}
libzfs-types = { path = "../libzfs-types", version = "0.1.1" }
nvpair-sys = "0.1"
serde = "1.0"
Expand Down

0 comments on commit b0960fd

Please sign in to comment.