mirror of
https://github.com/G2-Games/minidisc-cli.git
synced 2025-05-03 10:12:55 -05:00
Switched to g2-unicode-jp
fork, fixed compilation error on wasm
This commit is contained in:
parent
e55736344d
commit
38fbad1078
2 changed files with 5 additions and 5 deletions
|
@ -1,12 +1,12 @@
|
||||||
[package]
|
[package]
|
||||||
name = "minidisc_rs"
|
name = "minidisc"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://github.com/G2-Games/minidisc-cli/"
|
homepage = "https://github.com/G2-Games/minidisc-cli/"
|
||||||
repository = "https://github.com/G2-Games/minidisc-cli/minidisc-rs/"
|
repository = "https://github.com/G2-Games/minidisc-cli/minidisc-rs/"
|
||||||
description = "A library for controlling and uploading data to NetMD and Hi-MD minidisc devices."
|
description = "A library for interacting with NetMD and Hi-MD minidisc devices."
|
||||||
license-file = "LICENSE"
|
license-file = "LICENSE"
|
||||||
authors = ["G2 <ke0bhogsg@gmail.com>"]
|
authors = ["G2 <ke0bhogsg@gmail.com>", "Asivery"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
# Have docs.rs make documentation for most supported targets
|
# Have docs.rs make documentation for most supported targets
|
||||||
|
@ -33,7 +33,7 @@ des = "0.8"
|
||||||
cbc = "0.1"
|
cbc = "0.1"
|
||||||
ecb = "0.1"
|
ecb = "0.1"
|
||||||
tokio = { version = "1.36", features = ["sync"] }
|
tokio = { version = "1.36", features = ["sync"] }
|
||||||
unicode-jp = { git = "https://github.com/uzabase/unicode-jp-rs.git" }
|
g2-unicode-jp = "0.4.1"
|
||||||
thiserror = "1.0.57"
|
thiserror = "1.0.57"
|
||||||
|
|
||||||
[target.'cfg(target_family = "wasm")'.dependencies]
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
||||||
|
|
|
@ -14,7 +14,7 @@ pub async fn cross_sleep(duration: Duration) {
|
||||||
std::thread::sleep(duration);
|
std::thread::sleep(duration);
|
||||||
|
|
||||||
#[cfg(target_family = "wasm")]
|
#[cfg(target_family = "wasm")]
|
||||||
gloo::timers::future::TimeoutFuture::new(duration.as_millis()).await;
|
gloo::timers::future::TimeoutFuture::new(duration.as_millis() as u32).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn bcd_to_int(mut bcd: i32) -> i32 {
|
pub fn bcd_to_int(mut bcd: i32) -> i32 {
|
||||||
|
|
Loading…
Reference in a new issue