Skip to content

Commit 4e7f050

Browse files
authored
Feat/update sherpa rs (#60)
* chore: update dependencies to version 0.5.2-beta.0 and modify included files * docs: clarify NDK_HOME path in BUILDING.md * feat: update sherpa-rs and sherpa-rs-sys to version 0.6.0
1 parent 4f17458 commit 4e7f050

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ You must install NDK from Android Studio settings.
227227
```console
228228
rustup target add aarch64-linux-android
229229
cargo install cargo-ndk
230-
export NDK_HOME="$HOME/Library/Android/sdk/ndk/27.0.12077973"
230+
export NDK_HOME="$HOME/Library/Android/sdk/ndk/27.0.12077973" # ls $HOME/Library/Android/sdk/ndk/
231231
cargo ndk -t arm64-v8a build --release
232232
```
233233

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/sherpa-rs-sys/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sherpa-rs-sys"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["thewh1teagle"]
66
homepage = "https://github.com/thewh1teagle/sherpa-rs"
@@ -30,7 +30,8 @@ include = [
3030
"src/",
3131
"build.rs",
3232
"wrapper.h",
33-
"dist.txt",
33+
"dist.json",
34+
"checksum.txt",
3435
]
3536

3637
[build-dependencies]

crates/sherpa-rs/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "sherpa-rs"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["thewh1teagle"]
66
license = "MIT"
77
repository = "https://github.com/thewh1teagle/sherpa-rs"
88
description = "Rust bindings to https://github.com/k2-fsa/sherpa-onnx"
9-
readme = "README.md"
9+
readme = "../../README.md"
1010
keywords = [
1111
"audio",
1212
"embeddings",
@@ -21,7 +21,7 @@ crate-type = ["cdylib", "rlib"]
2121
[dependencies]
2222
eyre = "0.6.12"
2323
hound = { version = "3.5.1" }
24-
sherpa-rs-sys = { path = "../sherpa-rs-sys", version = "0.5.1", default-features = false }
24+
sherpa-rs-sys = { path = "../sherpa-rs-sys", version = "0.6.0", default-features = false }
2525
tracing = "0.1.40"
2626

2727
[dev-dependencies]

examples/tauri-app/src-tauri/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)