Skip to content

Commit

Permalink
Update internal versions and bump rust edition to 2024 (#70)
Browse files Browse the repository at this point in the history
* Update internal versions and bump rust edition to 2024

add rustup update script to rust.yml

* fix yml
  • Loading branch information
selfup authored Feb 21, 2025
1 parent 380be77 commit 58f61dc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Rustup Update
run: rustup update
- name: OS Deps
run: "sudo apt-get update \
&& sudo apt-get install \
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "oxidizy"
version = "0.2.0"
version = "0.3.0"
authors = ["selfup <[email protected]>"]
edition = "2021"
edition = "2024"

[workspace]
members = ["crates/*"]

[dependencies]
unigen = { path = "crates/unigen", version = "0.2.0", default-features = false }
unigen = { path = "crates/unigen", version = "0.3.0", default-features = false }

bevy = "0.15.2"
4 changes: 2 additions & 2 deletions crates/unigen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "unigen"
version = "0.2.0"
version = "0.3.0"
authors = ["selfup <[email protected]>"]
edition = "2021"
edition = "2024"

[dependencies]
rand = "0.9.0"
Expand Down

0 comments on commit 58f61dc

Please sign in to comment.