mirror of
https://github.com/ndarilek/tts-rs.git
synced 2024-11-17 11:29:37 +00:00
Merge branch 'master' into oxilangtag
This commit is contained in:
commit
246e587f2d
14
.github/workflows/test.yml
vendored
14
.github/workflows/test.yml
vendored
|
@ -17,8 +17,8 @@ jobs:
|
|||
if: ${{ runner.os == 'Linux' }}
|
||||
- run: |
|
||||
rustup toolchain install stable
|
||||
cargo fmt --all --check
|
||||
cargo clippy --all-features
|
||||
cargo fmt --check
|
||||
cargo clippy
|
||||
|
||||
check_web:
|
||||
name: Check Web
|
||||
|
@ -26,10 +26,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: |
|
||||
rustup toolchain install stable
|
||||
rustup target add wasm32-unknown-unknown
|
||||
rustup toolchain install stable
|
||||
cargo fmt --all --check
|
||||
cargo clippy --all-features --target wasm32-unknown-unknown
|
||||
cargo clippy --target wasm32-unknown-unknown
|
||||
|
||||
check_android:
|
||||
name: Check Android
|
||||
|
@ -48,7 +48,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: |
|
||||
rustup toolchain install stable
|
||||
rustup target add wasm32-unknown-unknown
|
||||
cargo install cargo-make
|
||||
cargo make build-web-example
|
||||
rustup toolchain install stable
|
||||
cd examples/web
|
||||
cargo build --target wasm32-unknown-unknown
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = "hello_world"
|
||||
version = "0.1.0"
|
||||
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
||||
edition = "2018"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = "web"
|
||||
version = "0.1.0"
|
||||
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
||||
edition = "2018"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
@ -11,4 +11,3 @@ console_log = "0.2"
|
|||
log = "0.4"
|
||||
seed = "0.9"
|
||||
tts = { path = "../.." }
|
||||
wasm-bindgen = "0.2"
|
Loading…
Reference in New Issue
Block a user