Skip to content

Commit b324d86

Browse files
authored
fix: compat non ascii for progress plugin (#10992)
1 parent af293cf commit b324d86

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Cargo.lock

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

crates/rspack_plugin_progress/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ version.workspace = true
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
async-trait = { workspace = true }
12-
futures = { workspace = true }
13-
indicatif = { workspace = true }
11+
async-trait = { workspace = true }
12+
futures = { workspace = true }
13+
# unicode-width feature related to https://github.com/web-infra-dev/rspack/issues/10988
14+
indicatif = { workspace = true, features = ["default"] }
1415
rspack_collections = { workspace = true }
1516
rspack_core = { workspace = true }
1617
rspack_error = { workspace = true }

0 commit comments

Comments
 (0)