chore: update to bevy 0.15

This commit is contained in:
Kristofers Solo 2024-12-11 15:29:02 +02:00
parent dcc68ffc00
commit 0d16152080
3 changed files with 769 additions and 401 deletions

View File

@ -49,7 +49,7 @@ jobs:
with: with:
sweep-cache: true sweep-cache: true
- name: Run clippy lints - name: Run clippy lints
run: cargo clippy --locked --workspace --all-targets --all-features -- --deny warnings run: cargo clippy --locked --workspace --all-features -- --deny warnings
# Check formatting. # Check formatting.
format: format:
name: Format name: Format

1162
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
[package] [package]
name = "hexlab" name = "hexlab"
authors = ["Kristofers Solo <dev@kristofers.xyz>"] authors = ["Kristofers Solo <dev@kristofers.xyz>"]
version = "0.1.5" version = "0.2.1"
edition = "2021" edition = "2021"
description = "A hexagonal maze generation and manipulation library" description = "A hexagonal maze generation and manipulation library"
repository = "https://github.com/kristoferssolo/hexlab" repository = "https://github.com/kristoferssolo/hexlab"
@ -18,8 +18,8 @@ categories = [
exclude = ["/.github", "/.gitignore", "/tests", "*.png", "*.md"] exclude = ["/.github", "/.gitignore", "/tests", "*.png", "*.md"]
[dependencies] [dependencies]
bevy = { version = "0.14", optional = true } bevy = { version = "0.15", optional = true }
hexx = { version = "0.18" } hexx = { version = "0.19" }
rand = "0.8" rand = "0.8"
rand_chacha = "0.3" rand_chacha = "0.3"
serde = { version = "1.0", features = ["derive"], optional = true } serde = { version = "1.0", features = ["derive"], optional = true }