Compare commits

..

No commits in common. "master" and "v0.2.0" have entirely different histories.

5 changed files with 1718 additions and 448 deletions

View File

@ -1,2 +0,0 @@
[profile.dev.package."*"]
opt-level = 2

View File

@ -1,25 +0,0 @@
name: Build
on: [push]
jobs:
Build:
env:
RUNNER_TOOL_CACHE: /toolcache
container: rust:alpine
steps:
- name: Install node
run: apk add nodejs gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev tar
- name: Check out repository code
uses: actions/checkout@v4
- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release

24
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

2110
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,11 @@
[package]
name = "bevy_blacklight_material"
description = "A blacklight material plugin for the Bevy engine"
version = "0.2.1"
version = "0.2.0"
edition = "2021"
license = "0BSD OR Apache-2.0 OR MIT"
repository = "https://git.exvacuum.dev/bevy_blacklight_material"
[dependencies.bevy]
version = "0.15"
default-features = false
features = ["bevy_render", "bevy_asset", "bevy_pbr"]
features = ["bevy_render", "bevy_asset"]