Skip to content

Commit 54f5228

Browse files
committed
Remove printlns
1 parent a214cce commit 54f5228

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

crates/html-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "html-macro"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "html macro"
55
authors = ["Chinedu Francis Nwafili <[email protected]>"]
66
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]

crates/html-macro/src/tag.rs

-2
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,8 @@ fn parse_attributes(input: &mut ParseStream) -> Result<Vec<Attr>> {
164164
{
165165
let (key, key_span) = parse_attribute_key(input)?;
166166

167-
println!("PARSING EQUALS");
168167
// =
169168
input.parse::<Token![=]>()?;
170-
println!("PARSED EQUALS");
171169

172170
// Continue parsing tokens until we see the next attribute or a closing > tag
173171
let mut value_tokens = TokenStream::new();

crates/percy-dom/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "percy-dom"
3-
version = "0.9.8"
3+
version = "0.9.9"
44
authors = ["Chinedu Francis Nwafili <[email protected]>"]
55
description = "A standalone Virtual DOM creation, diffing and patching implementation"
66
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
@@ -19,7 +19,7 @@ virtual-node = { path = "../virtual-node", version = "0.5.0" }
1919
wasm-bindgen = "0.2.33"
2020

2121
# Optional dependencies
22-
html-macro = { optional = true, path = "../html-macro", version = "0.2.4" }
22+
html-macro = { optional = true, path = "../html-macro", version = "0.2.5" }
2323

2424
[dependencies.web-sys]
2525
version = "0.3"

0 commit comments

Comments
 (0)