Skip to content

Commit c44295b

Browse files
committed
bump version
1 parent 588f65b commit c44295b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tinyaudio"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "TinyAudio is a cross-platform, easy-to-use, low-level, audio output library."
@@ -29,7 +29,7 @@ members = ["android-examples", "wasm-examples", "ios-example/Rust-TinyAudioExamp
2929
opt-level = 3
3030

3131
[target.'cfg(target_os = "android")'.dependencies]
32-
ndk = {version = "0.9.0", default-features = false, features = ["audio", "api-level-27"]}
32+
ndk = { version = "0.9.0", default-features = false, features = ["audio", "api-level-27"] }
3333

3434
[target.'cfg(target_os = "windows")'.dependencies]
3535
winapi = { version = "0.3.9", features = ["minwindef", "winnt", "windef", "winuser", "dsound", "synchapi", "winbase"] }

ios-example/Rust-TinyAudioExample/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ pub extern "C" fn create_audio_device() -> i32 {
3939
#[no_mangle]
4040
pub extern "C" fn is_audio_initialized() -> i32 {
4141
unsafe {
42+
#[allow(static_mut_refs)]
4243
match DEVICE_HANDLE.is_some() {
4344
true => 1,
4445
false => 0,

0 commit comments

Comments
 (0)