Skip to content

Commit

Permalink
Bump bindgen to 0.71 and release rlottie-sys 0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Feb 21, 2025
1 parent 912a6e6 commit d906936
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
13 changes: 6 additions & 7 deletions rlottie-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@
[package]
workspace = ".."
name = "rlottie-sys"
version = "0.2.9"
license = "MIT"
version = "0.2.10"
description = "A platform independent standalone library that plays Lottie Animation"
include = ["src/**/*.rs", "/build.rs", "/wrapper.h", "/LICENSE"]

description = "A platform independent standalone library that plays Lottie Animation"
repository = "https://github.com/msrd0/rlottie-rs"
documentation = "https://docs.msrd0.de/rlottie-sys/0.2.9/rlottie_sys/"
license.workspace = true
repository.workspace = true

edition = "2021"
rust-version = "1.56"
rust-version = "1.56" # bump version in build.rs as well
links = "rlottie"

[build-dependencies]
bindgen = { version = "0.68.1", features = ["prettyplease", "runtime"], default-features = false }
bindgen = { version = "0.71", features = ["prettyplease", "runtime"], default-features = false }
pkg-config = "0.3.22"
1 change: 1 addition & 0 deletions rlottie-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fn main() {
.newtype_enum(".*")
.size_t_is_usize(true)
.use_core()
.rust_target(bindgen::RustTarget::stable(56, 0))
.generate()
.expect("Unable to generate bindings");

Expand Down

0 comments on commit d906936

Please sign in to comment.