Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
- uses: actions/checkout@v4
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- run: cargo publish -p immediate_stats_macros
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
- run: cargo publish -p immediate_stats
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
15 changes: 9 additions & 6 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 immediate_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "immediate_stats"
version = "0.3.0-rc.1"
version = "0.3.0"
edition = "2024"
description = "Game stats that reset every frame, inspired by immediate mode GUI."
categories = ["game-development", "data-structures"]
Expand Down Expand Up @@ -30,12 +30,12 @@ bevy_auto_plugin = [
bevy_app = { version = "0.17", default-features = false, optional = true, features = [
"bevy_reflect",
] }
bevy_auto_plugin = { git = "https://github.com/StrikeForceZero/bevy_auto_plugin", rev = "refs/pull/22/head", optional = true }
bevy_auto_plugin = { version = "0.6", optional = true }
bevy_ecs = { version = "0.17", default-features = false, optional = true, features = [
"bevy_reflect",
] }
bevy_reflect = { version = "0.17", default-features = false, optional = true }
immediate_stats_macros = { path = "../immediate_stats_macros", version = "0.3.0-rc.1", default-features = false }
immediate_stats_macros = { path = "../immediate_stats_macros", version = "0.3", default-features = false }

[dev-dependencies]
bevy = { version = "0.17", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions immediate_stats_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "immediate_stats_macros"
version = "0.3.0-rc.1"
version = "0.3.0"
edition = "2024"
description = "Game stats that reset every frame, inspired by immediate mode GUI."
categories = ["game-development", "data-structures"]
Expand All @@ -21,7 +21,7 @@ bevy = []
bevy_auto_plugin = ["bevy"]

[dependencies]
darling = "0.21.3"
darling = "0.21"
proc-macro2 = "1.0"
proc-macro-error = "1.0"
quote = "1.0"
Expand Down