Skip to content

Commit 8c124a0

Browse files
committed
Fix Cargo.toml formatting. Bump version.
1 parent 087ed3a commit 8c124a0

4 files changed

Lines changed: 48 additions & 50 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ resolver = "2"
1313
license = "MIT"
1414
readme = "README.md"
1515
repository = "https://github.com/vidhanio/html-node"
16-
version = "0.2.0"
16+
version = "0.3.0"

html-node-core/Cargo.toml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
[package]
22
name = "html-node-core"
3-
4-
authors.workspace = true
5-
categories.workspace = true
3+
authors.workspace = true
4+
categories.workspace = true
65
description.workspace = true
7-
edition.workspace = true
8-
homepage.workspace = true
9-
keywords.workspace = true
10-
license.workspace = true
11-
readme.workspace = true
12-
repository.workspace = true
13-
version.workspace = true
6+
edition.workspace = true
7+
homepage.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
10+
readme.workspace = true
11+
repository.workspace = true
12+
version.workspace = true
1413

1514
[package.metadata.docs.rs]
1615
all-features = true
1716
rustdoc-args = ["--cfg", "docsrs"]
1817

1918
[dependencies]
20-
axum = { version = "0.6", optional = true, default-features = false }
19+
axum = { version = "0.6", optional = true, default-features = false }
2120
serde = { version = "1.0", optional = true, features = ["derive"] }
2221

2322
html-escape = "0.2"
24-
paste = "1.0.14"
23+
paste = "1.0.14"
2524

2625
[features]
2726
axum = ["dep:axum"]

html-node-macro/Cargo.toml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
[package]
22
name = "html-node-macro"
3-
4-
authors.workspace = true
5-
categories.workspace = true
3+
authors.workspace = true
4+
categories.workspace = true
65
description.workspace = true
7-
edition.workspace = true
8-
homepage.workspace = true
9-
keywords.workspace = true
10-
license.workspace = true
11-
readme.workspace = true
12-
repository.workspace = true
13-
version.workspace = true
6+
edition.workspace = true
7+
homepage.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
10+
readme.workspace = true
11+
repository.workspace = true
12+
version.workspace = true
1413

1514
[package.metadata.docs.rs]
1615
all-features = true
@@ -20,13 +19,13 @@ version.workspace = true
2019
proc-macro = true
2120

2221
[dependencies]
23-
proc-macro2 = "1"
22+
proc-macro2 = "1"
2423
proc-macro2-diagnostics = { version = "0.10", default-features = false }
25-
quote = "1"
26-
rstml = { version = "0.11", default-features = false }
27-
syn = "2"
28-
syn_derive = { version = "0.1", optional = true }
24+
quote = "1"
25+
rstml = { version = "0.11", default-features = false }
26+
syn = "2"
27+
syn_derive = { version = "0.1", optional = true }
2928

3029
[features]
3130
basic-css = []
32-
typed = ["dep:syn_derive"]
31+
typed = ["dep:syn_derive"]

html-node/Cargo.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
[package]
22
name = "html-node"
3-
4-
documentation = "https://docs.rs/html-node"
5-
6-
authors.workspace = true
7-
categories.workspace = true
3+
authors.workspace = true
4+
categories.workspace = true
85
description.workspace = true
9-
edition.workspace = true
10-
homepage.workspace = true
11-
keywords.workspace = true
12-
license.workspace = true
13-
readme.workspace = true
14-
repository.workspace = true
15-
version.workspace = true
6+
edition.workspace = true
7+
homepage.workspace = true
8+
keywords.workspace = true
9+
license.workspace = true
10+
readme.workspace = true
11+
repository.workspace = true
12+
version.workspace = true
13+
documentation = "https://docs.rs/html-node"
1614

1715
[package.metadata.docs.rs]
1816
all-features = true
1917
rustdoc-args = ["--cfg", "docsrs"]
2018

19+
2120
[[example]]
22-
name = "axum"
21+
name = "axum"
2322
required-features = ["axum"]
2423

2524
[[example]]
26-
name = "typed_custom_attributes"
25+
name = "typed_custom_attributes"
2726
required-features = ["typed"]
2827

2928
[[example]]
30-
name = "styling"
29+
name = "styling"
3130
required-features = ["basic-css"]
3231

3332
[dependencies]
34-
html-node-core = { version = "0.2", path = "../html-node-core" }
33+
html-node-core = { version = "0.2", path = "../html-node-core" }
3534
html-node-macro = { version = "0.2", path = "../html-node-macro" }
3635

36+
3737
[dev-dependencies]
38-
axum = "0.6"
38+
axum = "0.6"
3939
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
4040

4141
[features]
42-
axum = ["html-node-core/axum"]
42+
axum = ["html-node-core/axum"]
4343
basic-css = ["html-node-macro/basic-css"]
44-
pretty = ["html-node-core/pretty"]
45-
serde = ["html-node-core/serde"]
46-
typed = ["html-node-core/typed", "html-node-macro/typed"]
44+
pretty = ["html-node-core/pretty"]
45+
serde = ["html-node-core/serde"]
46+
typed = ["html-node-core/typed", "html-node-macro/typed"]

0 commit comments

Comments
 (0)