Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
fix: proc macro import
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Jan 13, 2024
1 parent 1b3ef2a commit a3931a7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ jobs:

- name: Cargo | Publish
run: |
cargo publish -p bevy-silk-macros --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
cargo publish -p bevy-silk --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["bevy-silk", "crates/*", "demos/*"]
members = ["bevy-silk", "bevy-silk-macros", "demos/*"]
resolver = "2"

[workspace.package]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "silk-macros"
name = "bevy-silk-macros"
version.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion bevy-silk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition.workspace = true

[dependencies]
bevy = { workspace = true }
silk-macros = { path = "../crates/silk-macros" }
bevy-silk-macros = { path = "../bevy-silk-macros" }
bevy_matchbox = { workspace = true }
serde = "1"
instant = "0.1"
Expand Down

0 comments on commit a3931a7

Please sign in to comment.