Patch versions for 0.13/0.11 release of main crate and -sys respectively
This commit is contained in:
parent
dd0c3af408
commit
26b176525f
2 changed files with 30 additions and 30 deletions
|
|
@ -4,7 +4,7 @@ exclude = ["examples/full_usage"]
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "whisper-rs"
|
name = "whisper-rs"
|
||||||
version = "0.13.1"
|
version = "0.13.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Rust bindings for whisper.cpp"
|
description = "Rust bindings for whisper.cpp"
|
||||||
license = "Unlicense"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
whisper-rs-sys = { path = "sys", version = "0.11.1" }
|
whisper-rs-sys = { path = "sys", version = "0.11" }
|
||||||
log = { version = "0.4", optional = true }
|
log = { version = "0.4", optional = true }
|
||||||
tracing = { version = "0.1", optional = true }
|
tracing = { version = "0.1", optional = true }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "whisper-rs-sys"
|
name = "whisper-rs-sys"
|
||||||
version = "0.11.1"
|
version = "0.11.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Rust bindings for whisper.cpp (FFI bindings)"
|
description = "Rust bindings for whisper.cpp (FFI bindings)"
|
||||||
license = "Unlicense"
|
license = "Unlicense"
|
||||||
|
|
@ -8,33 +8,33 @@ documentation = "https://docs.rs/whisper-rs-sys"
|
||||||
repository = "https://github.com/tazz4843/whisper-rs"
|
repository = "https://github.com/tazz4843/whisper-rs"
|
||||||
links = "whisper"
|
links = "whisper"
|
||||||
include = [
|
include = [
|
||||||
"whisper.cpp/bindings/javascript/package-tmpl.json",
|
"whisper.cpp/bindings/javascript/package-tmpl.json",
|
||||||
"whisper.cpp/bindings/CMakeLists.txt",
|
"whisper.cpp/bindings/CMakeLists.txt",
|
||||||
"whisper.cpp/CMakeLists.txt",
|
"whisper.cpp/CMakeLists.txt",
|
||||||
"whisper.cpp/cmake",
|
"whisper.cpp/cmake",
|
||||||
"whisper.cpp/src/coreml",
|
"whisper.cpp/src/coreml",
|
||||||
"whisper.cpp/src/CMakeLists.txt",
|
"whisper.cpp/src/CMakeLists.txt",
|
||||||
"whisper.cpp/src/whisper.cpp",
|
"whisper.cpp/src/whisper.cpp",
|
||||||
"whisper.cpp/include/whisper.h",
|
"whisper.cpp/include/whisper.h",
|
||||||
"whisper.cpp/ggml/src/ggml.c",
|
"whisper.cpp/ggml/src/ggml.c",
|
||||||
"whisper.cpp/ggml/src/ggml-alloc.c",
|
"whisper.cpp/ggml/src/ggml-alloc.c",
|
||||||
"whisper.cpp/ggml/src/ggml-backend.c",
|
"whisper.cpp/ggml/src/ggml-backend.c",
|
||||||
"whisper.cpp/ggml/src/ggml-cuda.cu",
|
"whisper.cpp/ggml/src/ggml-cuda.cu",
|
||||||
"whisper.cpp/ggml/src/ggml-impl.h",
|
"whisper.cpp/ggml/src/ggml-impl.h",
|
||||||
"whisper.cpp/ggml/src/ggml-metal.m",
|
"whisper.cpp/ggml/src/ggml-metal.m",
|
||||||
"whisper.cpp/ggml/src/ggml-metal.metal",
|
"whisper.cpp/ggml/src/ggml-metal.metal",
|
||||||
"whisper.cpp/ggml/src/ggml-quants.h",
|
"whisper.cpp/ggml/src/ggml-quants.h",
|
||||||
"whisper.cpp/ggml/src/ggml-quants.c",
|
"whisper.cpp/ggml/src/ggml-quants.c",
|
||||||
"whisper.cpp/ggml/include/ggml.h",
|
"whisper.cpp/ggml/include/ggml.h",
|
||||||
"whisper.cpp/ggml/include/ggml-alloc.h",
|
"whisper.cpp/ggml/include/ggml-alloc.h",
|
||||||
"whisper.cpp/ggml/include/ggml-backend.h",
|
"whisper.cpp/ggml/include/ggml-backend.h",
|
||||||
"whisper.cpp/ggml/include/ggml-backend-impl.h",
|
"whisper.cpp/ggml/include/ggml-backend-impl.h",
|
||||||
"whisper.cpp/ggml/include/ggml-cuda.h",
|
"whisper.cpp/ggml/include/ggml-cuda.h",
|
||||||
"whisper.cpp/ggml/include/ggml-metal.h",
|
"whisper.cpp/ggml/include/ggml-metal.h",
|
||||||
"whisper.cpp/LICENSE",
|
"whisper.cpp/LICENSE",
|
||||||
"src/*.rs",
|
"src/*.rs",
|
||||||
"build.rs",
|
"build.rs",
|
||||||
"wrapper.h",
|
"wrapper.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue