Skip to content

Commit

Permalink
Feat/update sherpa rs (#60)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
thewh1teagle authored Dec 25, 2024
1 parent 4f17458 commit 4e7f050
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ You must install NDK from Android Studio settings.
```console
rustup target add aarch64-linux-android
cargo install cargo-ndk
export NDK_HOME="$HOME/Library/Android/sdk/ndk/27.0.12077973"
export NDK_HOME="$HOME/Library/Android/sdk/ndk/27.0.12077973" # ls $HOME/Library/Android/sdk/ndk/
cargo ndk -t arm64-v8a build --release
```

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions crates/sherpa-rs-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sherpa-rs-sys"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
authors = ["thewh1teagle"]
homepage = "https://github.com/thewh1teagle/sherpa-rs"
Expand Down Expand Up @@ -30,7 +30,8 @@ include = [
"src/",
"build.rs",
"wrapper.h",
"dist.txt",
"dist.json",
"checksum.txt",
]

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/sherpa-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "sherpa-rs"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
authors = ["thewh1teagle"]
license = "MIT"
repository = "https://github.com/thewh1teagle/sherpa-rs"
description = "Rust bindings to https://github.com/k2-fsa/sherpa-onnx"
readme = "README.md"
readme = "../../README.md"
keywords = [
"audio",
"embeddings",
Expand All @@ -21,7 +21,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
eyre = "0.6.12"
hound = { version = "3.5.1" }
sherpa-rs-sys = { path = "../sherpa-rs-sys", version = "0.5.1", default-features = false }
sherpa-rs-sys = { path = "../sherpa-rs-sys", version = "0.6.0", default-features = false }
tracing = "0.1.40"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions examples/tauri-app/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4e7f050

Please sign in to comment.