Skip to content
This repository was archived by the owner on Jun 18, 2026. It is now read-only.

Commit c2e080c

Browse files
Merge pull request #49 from facet-rs/v0.46
V0.46
2 parents d8a0e2a + c660692 commit c2e080c

8 files changed

Lines changed: 181 additions & 242 deletions

File tree

Cargo.lock

Lines changed: 163 additions & 220 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,26 @@ members = [
1010
resolver = "3"
1111

1212
[workspace.package]
13-
version = "0.44.0"
13+
version = "0.46.0"
1414
edition = "2024"
1515
rust-version = "1.90"
1616
license = "MIT OR Apache-2.0"
1717
repository = "https://github.com/facet-rs/facet-xml"
1818

1919
[workspace.dependencies]
2020
# Core facet crates from main repo
21-
facet = { version = "0.44.0" }
22-
facet-core = { version = "0.44.0" }
23-
facet-reflect = { version = "0.44.0" }
24-
facet-dessert = { version = "0.44.0" }
25-
facet-json = { version = "0.44.0" }
26-
facet-testhelpers = { version = "0.44.0" }
27-
rediff = { version = "0.44.0" }
21+
facet = { version = "0.46.0" }
22+
facet-core = { version = "0.46.0" }
23+
facet-reflect = { version = "0.46.0" }
24+
facet-dessert = { version = "0.46.0" }
25+
facet-json = { version = "0.46.0" }
26+
facet-testhelpers = { version = "0.46.0" }
27+
rediff = { version = "0.46.0" }
2828

2929
# Local workspace crates
30-
facet-singularize = { path = "facet-singularize", version = "0.44.0" }
31-
facet-dom = { path = "facet-dom", version = "0.44.0" }
32-
facet-xml = { path = "facet-xml", version = "0.44.0" }
33-
facet-xml-node = { path = "facet-xml-node", version = "0.44.0" }
34-
facet-atom = { path = "facet-atom", version = "0.44.0" }
35-
facet-svg = { path = "facet-svg", version = "0.44.0" }
30+
facet-singularize = { path = "facet-singularize", version = "0.46.0" }
31+
facet-dom = { path = "facet-dom", version = "0.46.0" }
32+
facet-xml = { path = "facet-xml", version = "0.46.0" }
3633

3734
# Shared dependencies
3835
divan = "0.1.21"

facet-atom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ facet-xml = { workspace = true }
2121
indoc = { workspace = true }
2222
tracing = { workspace = true }
2323
facet-testhelpers = { workspace = true }
24-
facet-xml = { workspace = true, features = ["tracing"] }
24+
facet-xml = { path = "../facet-xml", features = ["tracing"] }
2525

2626
[lints]
2727
workspace = true

facet-svg/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ tracing = { workspace = true, optional = true }
2424
datatest-stable = "0.3"
2525
rediff = { workspace = true }
2626
facet-testhelpers = { workspace = true }
27-
facet-xml = { workspace = true, features = ["tracing"] }
28-
facet-reflect = { workspace = true, features = ["tracing"] }
27+
facet-xml = { path = "../facet-xml", features = ["tracing"] }
2928
tracing = { workspace = true }
3029

3130
[features]

facet-xml-node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ facet-xml = { workspace = true }
2323

2424
[dev-dependencies]
2525
facet-testhelpers = { workspace = true }
26-
facet-dom = { workspace = true, features = ["tracing"] }
27-
facet-xml = { workspace = true, features = ["tracing"] }
26+
facet-dom = { path = "../facet-dom", features = ["tracing"] }
27+
facet-xml = { path = "../facet-xml", features = ["tracing"] }
2828
facet-reflect = { workspace = true, features = ["tracing"] }
2929

3030
[lints]

facet-xml/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ http-body-util = { version = "0.1", default-features = false, optional = true }
3939
facet = { workspace = true, features = ["doc", "net"] }
4040
facet-testhelpers = { workspace = true }
4141
tracing = { workspace = true }
42-
facet-dom = { workspace = true, features = ["tracing"] }
42+
facet-dom = { path = "../facet-dom", features = ["tracing"] }
4343
facet-reflect = { workspace = true, features = ["tracing"] }
4444

4545
[features]

hooks/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
captain
2+
capn

hooks/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/bash
2-
captain pre-push
2+
capn pre-push

0 commit comments

Comments
 (0)