diff --git a/Cargo.toml b/Cargo.toml index 5ea8246..cbaa692 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ exclude = ["examples/full_usage"] [package] name = "whisper-rs" -version = "0.13.1" +version = "0.14.0" edition = "2021" description = "Rust bindings for whisper.cpp" license = "Unlicense" @@ -14,7 +14,7 @@ repository = "https://github.com/tazz4843/whisper-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -whisper-rs-sys = { path = "sys", version = "0.11" } +whisper-rs-sys = { path = "sys", version = "0.12" } log = { version = "0.4", optional = true } tracing = { version = "0.1", optional = true } diff --git a/sys/Cargo.toml b/sys/Cargo.toml index 0707ec2..73d97fd 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whisper-rs-sys" -version = "0.11.1" +version = "0.12.0" edition = "2021" description = "Rust bindings for whisper.cpp (FFI bindings)" license = "Unlicense" @@ -8,20 +8,20 @@ documentation = "https://docs.rs/whisper-rs-sys" repository = "https://github.com/tazz4843/whisper-rs" links = "whisper" include = [ - "whisper.cpp/bindings/javascript/package-tmpl.json", - "whisper.cpp/bindings/CMakeLists.txt", - "whisper.cpp/CMakeLists.txt", - "whisper.cpp/cmake", - "whisper.cpp/src/**", - "whisper.cpp/include/whisper.h", - "whisper.cpp/ggml/cmake", - "whisper.cpp/ggml/CMakeLists.txt", - "whisper.cpp/ggml/src/**", - "whisper.cpp/ggml/include/*.h", - "whisper.cpp/LICENSE", - "src/*.rs", - "build.rs", - "wrapper.h", + "whisper.cpp/bindings/javascript/package-tmpl.json", + "whisper.cpp/bindings/CMakeLists.txt", + "whisper.cpp/CMakeLists.txt", + "whisper.cpp/cmake", + "whisper.cpp/src/**", + "whisper.cpp/include/whisper.h", + "whisper.cpp/ggml/cmake", + "whisper.cpp/ggml/CMakeLists.txt", + "whisper.cpp/ggml/src/**", + "whisper.cpp/ggml/include/*.h", + "whisper.cpp/LICENSE", + "src/*.rs", + "build.rs", + "wrapper.h", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -38,6 +38,6 @@ openmp = [] [build-dependencies] cmake = "0.1" -bindgen = "0.69" +bindgen = "0.71" cfg-if = "1" fs_extra = "1.3"