Skip to content

Commit

Permalink
Bump yang2 and libyang2-sys
Browse files Browse the repository at this point in the history
Signed-off-by: Renato Westphal <[email protected]>
  • Loading branch information
rwestphal committed Apr 26, 2024
1 parent 535d21c commit 91c1e1a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yang2"
version = "0.9.1"
version = "0.10.0"
authors = ["Renato Westphal <[email protected]>"]
description = "libyang2 bindings for Rust"
keywords = ["yang", "libyang"]
Expand All @@ -13,7 +13,7 @@ categories = ["parser-implementations"]
exclude = ["assets/**"]

[dependencies]
libyang2-sys = { path = "libyang2-sys", version = "0.8.0" }
libyang2-sys = { path = "libyang2-sys", version = "0.9.0" }
bitflags = "2.5"
num-traits = "0.2"
num-derive = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ For raw FFI bindings for libyang2, see [libyang2-sys].

```toml
[dependencies]
yang2 = "0.9"
yang2 = "0.10"
```
## Design Goals
* Provide high-level bindings for libyang2 using idiomatic Rust
Expand All @@ -41,7 +41,7 @@ By default, yang2-rs uses pre-generated FFI bindings and uses dynamic linking to
* **bundled**: instructs cargo to download and build libyang2 from the sources. The resulting objects are grouped into a static archive linked to this crate. This feature can be used when having a libyang2 dynamic link dependency isn't desirable.
* Additional build requirements: *cc 1.0*, *cmake 0.1*, a C compiler and CMake.
* **use_bindgen**: generate new C FFI bindings dynamically instead of using the pre-generated ones. Useful when updating this crate to use newer libyang2 versions.
* Additional build requirements: *bindgen 0.55.0*
* Additional build requirements: *bindgen 0.68.0*

## Example

Expand Down
2 changes: 1 addition & 1 deletion libyang2-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libyang2-sys"
version = "0.8.0"
version = "0.9.0"
authors = ["Renato Westphal <[email protected]>"]
description = "Raw FFI bindings for libyang2"
keywords = ["yang", "libyang"]
Expand Down

0 comments on commit 91c1e1a

Please sign in to comment.