Compare commits

..

No commits in common. "246e587f2d7c2485866238129dfe39e2d5649772" and "d547d84af028d707a480ffb2af97fa5ed84df941" have entirely different histories.

3 changed files with 10 additions and 9 deletions

View File

@ -17,8 +17,8 @@ jobs:
if: ${{ runner.os == 'Linux' }}
- run: |
rustup toolchain install stable
cargo fmt --check
cargo clippy
cargo fmt --all --check
cargo clippy --all-features
check_web:
name: Check Web
@ -26,10 +26,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
rustup target add wasm32-unknown-unknown
rustup toolchain install stable
rustup target add wasm32-unknown-unknown
cargo fmt --all --check
cargo clippy --target wasm32-unknown-unknown
cargo clippy --all-features --target wasm32-unknown-unknown
check_android:
name: Check Android
@ -48,7 +48,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
rustup target add wasm32-unknown-unknown
rustup toolchain install stable
cd examples/web
cargo build --target wasm32-unknown-unknown
rustup target add wasm32-unknown-unknown
cargo install cargo-make
cargo make build-web-example

View File

@ -2,7 +2,7 @@
name = "hello_world"
version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
edition = "2021"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -2,7 +2,7 @@
name = "web"
version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
edition = "2021"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -11,3 +11,4 @@ console_log = "0.2"
log = "0.4"
seed = "0.9"
tts = { path = "../.." }
wasm-bindgen = "0.2"