Skip to content

Commit

Permalink
bump: 0.22 release prep with macro crate
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Sep 25, 2024
1 parent 3c1a2ef commit bd239e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
name = "walrus"
version = "0.21.3"
version = "0.22.0"
license = "MIT/Apache-2.0"
readme = "README.md"
categories = ["wasm"]
Expand All @@ -28,7 +28,7 @@ id-arena = "2.2.1"
leb128 = "0.2.4"
log = "0.4.8"
rayon = { version = "1.1.0", optional = true }
walrus-macro = { path = './crates/macro', version = '=0.19.0' }
walrus-macro = { path = './crates/macro', version = '=0.22.0' }
wasm-encoder = "0.212.0"
wasmparser = "0.212.0"
gimli = "0.26.0"
Expand Down
10 changes: 5 additions & 5 deletions crates/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
name = "walrus-macro"
version = "0.19.0"
version = "0.22.0"
license = "MIT/Apache-2.0"
categories = ["wasm"]
repository = "https://github.com/rustwasm/walrus/tree/crates/macro"
Expand All @@ -13,10 +13,10 @@ Internal macros used by the `walrus` crate, not for public consumption.
"""

[dependencies]
heck = "0.3.1"
proc-macro2 = "1.0.1"
quote = "1.0.2"
syn = { version = "2.0.0", features = ['extra-traits'] }
heck = "0.5.0"
proc-macro2 = "1.0.86"
quote = "1.0.37"
syn = { version = "2.0.77", features = ['extra-traits'] }

[lib]
proc-macro = true
2 changes: 1 addition & 1 deletion crates/macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
extern crate proc_macro;

use self::proc_macro::TokenStream;
use heck::SnakeCase;
use heck::ToSnakeCase;
use proc_macro2::Span;
use quote::quote;
use syn::ext::IdentExt;
Expand Down

0 comments on commit bd239e6

Please sign in to comment.