Skip to content

Commit

Permalink
Fix dependencies and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Joeoc2001 committed Nov 2, 2023
1 parent c8be819 commit 4f160d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ jobs:
with:
toolchain: stable
- run: cargo check --all-targets
cargo-check-all-features:
name: Cargo check all features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo check --all-targets --all-features
cargo-test:
name: Cargo test
runs-on: ubuntu-latest
Expand Down
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgsl-inline"
version = "0.1.5"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "A macro used to embed WGSL within Rust."
Expand All @@ -12,12 +12,15 @@ categories = ["game-development", "graphics"]
include = ["/Cargo.toml", "/LICENSE", "/README.md", "/src/**"]

[dependencies]
syn = { version = "2.0", features = ["full"] }
syn = { version = "2.0", features = [] }
naga = { version = "0.14", features = ["wgsl-in", "wgsl-out"] }
naga-to-tokenstream = "0.4"
proc-macro2 = "1.0"
quote = "1.0"

[dev-dependencies]
encase = "0.6"

[lib]
proc-macro = true

Expand Down

0 comments on commit 4f160d3

Please sign in to comment.