From 021d686929ba8c096d415989ce0bb36837eff917 Mon Sep 17 00:00:00 2001 From: Dominic Date: Sat, 16 Jul 2022 15:05:29 +0200 Subject: [PATCH] enable runtime feature of bindgen --- rlottie-sys/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rlottie-sys/Cargo.toml b/rlottie-sys/Cargo.toml index 3e735f4f..9d52f444 100644 --- a/rlottie-sys/Cargo.toml +++ b/rlottie-sys/Cargo.toml @@ -3,18 +3,18 @@ [package] workspace = ".." name = "rlottie-sys" -version = "0.2.1" +version = "0.2.2" license = "MIT" 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.1/rlottie-sys/" +documentation = "https://docs.msrd0.de/rlottie-sys/0.2.2/rlottie-sys/" edition = "2021" rust-version = "1.56" links = "rlottie" [build-dependencies] -bindgen = { version = "0.60.1", default-features = false } +bindgen = { version = "0.60.1", features = ["runtime"], default-features = false } pkg-config = "0.3.22"