Skip to content

Commit 1290325

Browse files
committed
Undo the formatting changes.
1 parent 6be3606 commit 1290325

File tree

9 files changed

+30
-18
lines changed

9 files changed

+30
-18
lines changed

.github/workflows/main-checks.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: Main Checks
33
on:
44
pull_request:
55
paths:
6-
- '.github/workflows/main-checks.yml'
7-
- 'ci/**'
8-
- 'packages/**/*'
9-
- 'Cargo.toml'
10-
- 'Cargo.lock'
6+
- ".github/workflows/main-checks.yml"
7+
- "ci/**"
8+
- "packages/**/*"
9+
- "Cargo.toml"
10+
- "Cargo.lock"
1111
push:
1212
branches: [master]
1313

examples/boids/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ gloo = "0.11"
1616

1717
[dependencies.web-sys]
1818
version = "0.3"
19-
features = ["HtmlInputElement"]
19+
features = [
20+
"HtmlInputElement",
21+
]

examples/function_memory_game/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ yew = { path = "../../packages/yew", features = ["csr"] }
1717

1818
[dependencies.web-sys]
1919
version = "0.3"
20-
features = ["HtmlInputElement"]
20+
features = [
21+
"HtmlInputElement",
22+
]

examples/function_todomvc/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ yew = { path = "../../packages/yew", features = ["csr"] }
1414

1515
[dependencies.web-sys]
1616
version = "0.3"
17-
features = ["HtmlInputElement"]
17+
features = [
18+
"HtmlInputElement",
19+
]

examples/game_of_life/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.4"
44
authors = [
55
"Diego Cardoso <[email protected]>",
66
"Ilya Bogdanov <[email protected]",
7-
"Junjie Huang <[email protected]>",
7+
"Junjie Huang <[email protected]>"
88
]
99
edition = "2021"
1010
license = "MIT OR Apache-2.0"

examples/mount_point/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ features = [
1919
"Element",
2020
"HtmlCanvasElement",
2121
"Node",
22-
"Window",
22+
"Window"
2323
]

examples/todomvc/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ gloo = "0.11"
1515

1616
[dependencies.web-sys]
1717
version = "0.3"
18-
features = ["HtmlInputElement"]
18+
features = [
19+
"HtmlInputElement",
20+
]

packages/yew-router-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ proc-macro = true
1414
[dependencies]
1515
proc-macro2 = "1"
1616
quote = "1"
17-
syn = { version = "2", features = ["full", "extra-traits"] }
17+
syn = { version = "2", features = ["full","extra-traits"] }
1818

1919
[dev-dependencies]
2020
rustversion = "1"

packages/yew-router/Cargo.toml

+10-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repository = "https://github.com/yewstack/yew"
1212
rust-version = "1.76.0"
1313

1414
[dependencies]
15-
yew = { version = "0.21.0", path = "../yew", default-features = false }
15+
yew = { version = "0.21.0", path = "../yew", default-features= false }
1616
yew-router-macro = { version = "0.18.0", path = "../yew-router-macro" }
1717

1818
wasm-bindgen = "0.2"
@@ -26,16 +26,20 @@ urlencoding = "2.1.3"
2626

2727
[dependencies.web-sys]
2828
version = "0.3"
29-
features = ["Document", "HtmlBaseElement", "Window"]
29+
features = [
30+
"Document",
31+
"HtmlBaseElement",
32+
"Window"
33+
]
3034

3135
[dev-dependencies]
32-
wasm-bindgen-test = "0.3.43"
36+
wasm-bindgen-test = "0.3"
3337
serde = { version = "1", features = ["derive"] }
3438
yew = { version = "0.21.0", path = "../yew", features = ["csr"] }
3539

3640
[dev-dependencies.web-sys]
3741
version = "0.3"
38-
features = ["HtmlHeadElement"]
42+
features = [
43+
"HtmlHeadElement"
44+
]
3945

40-
[features]
41-
default = []

0 commit comments

Comments
 (0)