Skip to content

Commit 087b3df

Browse files
committed
Scope piet fix to trace dump
Use the fixed upstream piet commit directly from trace_dump instead of a workspace-level crates.io patch. This keeps the dependency override next to the only package that needs it while preserving removal of the unic advisory crates.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
1 parent 5ce44ad commit 087b3df

3 files changed

Lines changed: 32 additions & 42 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ hyperlight-libc = { path = "src/hyperlight_libc", version = "0.15.0", default-fe
4747
hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.15.0", default-features = false }
4848
hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.15.0", default-features = false }
4949

50-
[patch.crates-io]
51-
# Fixes #1490, #1494, and #1495 by using upstream piet commit 618083f,
52-
# which replaces the unmaintained unic-bidi dependency with icu_properties.
53-
piet = { git = "https://github.com/linebender/piet", rev = "618083f8a6671c7ab8c198724487348d2ccf9a8f" }
54-
5550
[workspace.lints.rust]
5651
unsafe_op_in_unsafe_fn = "deny"
5752

src/trace_dump/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ rust-version = "1.92"
77

88
[dependencies]
99
addr2line = "0.26.1"
10-
piet-common = { version = "0.8.0", features = [ "png" ] }
10+
# Fixes #1490 through #1495 by using upstream piet commit 618083f,
11+
# which replaces the unmaintained unic-bidi dependency with icu_properties.
12+
piet-common = { git = "https://github.com/linebender/piet", rev = "618083f8a6671c7ab8c198724487348d2ccf9a8f", features = [ "png" ] }
1113
blake3 = { version = "1.8.5" }
1214

1315
[[bin]]

0 commit comments

Comments
 (0)