mirror of https://github.com/encounter/nod-rs.git
More build fix attempts
This commit is contained in:
parent
ec85b8380d
commit
fff7b350b1
|
@ -13,7 +13,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
toolchain: [ stable, 1.57.0, nightly ]
|
toolchain: [ stable, 1.59.0, nightly ]
|
||||||
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: -D warnings
|
RUSTFLAGS: -D warnings
|
||||||
steps:
|
steps:
|
||||||
|
@ -53,6 +54,7 @@ jobs:
|
||||||
checks:
|
checks:
|
||||||
- advisories
|
- advisories
|
||||||
- bans licenses sources
|
- bans licenses sources
|
||||||
|
fail-fast: false
|
||||||
# Prevent new advisories from failing CI
|
# Prevent new advisories from failing CI
|
||||||
continue-on-error: ${{ matrix.checks == 'advisories' }}
|
continue-on-error: ${{ matrix.checks == 'advisories' }}
|
||||||
steps:
|
steps:
|
||||||
|
@ -74,7 +76,7 @@ jobs:
|
||||||
- name: Setup Rust toolchain
|
- name: Setup Rust toolchain
|
||||||
uses: dtolnay/rust-toolchain@stable
|
uses: dtolnay/rust-toolchain@stable
|
||||||
- name: Cargo test
|
- name: Cargo test
|
||||||
run: cargo test --release --all-features
|
run: cargo test --release
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
|
@ -105,7 +107,7 @@ jobs:
|
||||||
target: x86_64-pc-windows-msvc
|
target: x86_64-pc-windows-msvc
|
||||||
name: windows-x86_64
|
name: windows-x86_64
|
||||||
build: build
|
build: build
|
||||||
features: asm
|
features: default
|
||||||
- platform: windows-latest
|
- platform: windows-latest
|
||||||
target: aarch64-pc-windows-msvc
|
target: aarch64-pc-windows-msvc
|
||||||
name: windows-arm64
|
name: windows-arm64
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name = "nod"
|
name = "nod"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.57.0"
|
rust-version = "1.59.0"
|
||||||
authors = ["Luke Street <luke@street.dev>"]
|
authors = ["Luke Street <luke@street.dev>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/encounter/nod-rs"
|
repository = "https://github.com/encounter/nod-rs"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
[crates.io]: https://crates.io/crates/nod
|
[crates.io]: https://crates.io/crates/nod
|
||||||
[Api Rustdoc]: https://img.shields.io/badge/api-rustdoc-blue.svg
|
[Api Rustdoc]: https://img.shields.io/badge/api-rustdoc-blue.svg
|
||||||
[rustdoc]: https://docs.rs/nod
|
[rustdoc]: https://docs.rs/nod
|
||||||
[Rust Version]: https://img.shields.io/badge/rust-1.57+-blue.svg?maxAge=3600
|
[Rust Version]: https://img.shields.io/badge/rust-1.59+-blue.svg?maxAge=3600
|
||||||
|
|
||||||
Library for traversing & reading GameCube and Wii disc images.
|
Library for traversing & reading GameCube and Wii disc images.
|
||||||
|
|
||||||
|
|
|
@ -73,6 +73,7 @@ allow = [
|
||||||
"MIT",
|
"MIT",
|
||||||
"Apache-2.0",
|
"Apache-2.0",
|
||||||
"BSD-3-Clause",
|
"BSD-3-Clause",
|
||||||
|
"Unicode-DFS-2016",
|
||||||
]
|
]
|
||||||
# List of explictly disallowed licenses
|
# List of explictly disallowed licenses
|
||||||
# See https://spdx.org/licenses/ for list of possible licenses
|
# See https://spdx.org/licenses/ for list of possible licenses
|
||||||
|
|
Loading…
Reference in New Issue