Skip to content

Commit

Permalink
publish 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Raab committed Aug 21, 2023
1 parent cb1e868 commit bde799d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/bindings/rust/elektra-sys/published_Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elektra-sys"
version = "0.11.0"
version = "0.11.1"
authors = ["PhilippGackstatter <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand All @@ -16,5 +16,5 @@ default = []
[dependencies]

[build-dependencies]
bindgen = "0.55.1"
bindgen = "0.66.1"
pkg-config = { version = "0.3.16", optional = true }
6 changes: 3 additions & 3 deletions src/bindings/rust/elektra-sys/published_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ fn main() {
// bindings for.
.header("wrapper.h")
// Include only the necessary functions and enums
.whitelist_function("(key|ks|kdb).*")
.whitelist_var("(KEY|KDB).*")
.allowlist_function("(key|ks|kdb).*")
.allowlist_var("(KEY|KDB).*")
// bindgen uses clang for anything C-related.
// Here we set the necessary include directories
// such that any includes in the wrapper can be found.
Expand Down Expand Up @@ -51,4 +51,4 @@ fn get_include_dir() -> String {
fn print_libdir() {
#[cfg(feature = "pkg-config")]
println!("cargo:rustc-link-search={}", pkg_config::get_variable("elektra", "libdir").unwrap_or_else(|e| panic!("pkg_config error {}", e)));
}
}
4 changes: 2 additions & 2 deletions src/bindings/rust/elektra/published_Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elektra"
version = "0.11.0"
version = "0.11.1"
authors = ["PhilippGackstatter <[email protected]>"]
edition = "2018"
description = "Elektra serves as a universal and secure framework to access configuration parameters in a global, hierarchical key database."
Expand All @@ -16,5 +16,5 @@ default = []
pkg-config = ["elektra-sys/pkg-config"]

[dependencies]
elektra-sys = { version = "0.11.0" }
elektra-sys = { version = "0.11.1" }
bitflags = "1.1.0"

0 comments on commit bde799d

Please sign in to comment.