From 1db3976a62815ea7dcee4c5067aa6bca4c7fa76a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 15:17:34 +0000 Subject: [PATCH] chore(deps): bump unicode-width from 0.1.13 to 0.2.0 Bumps [unicode-width](https://github.com/unicode-rs/unicode-width) from 0.1.13 to 0.2.0. - [Commits](https://github.com/unicode-rs/unicode-width/commits) --- updated-dependencies: - dependency-name: unicode-width dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++++++++------- assembly/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9fd88568c..2e522e078 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1027,7 +1027,7 @@ dependencies = [ "rustc_version 0.4.0", "smallvec", "tracing", - "unicode-width", + "unicode-width 0.2.0", ] [[package]] @@ -1075,7 +1075,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e392e0a8c34b32671012b439de35fa8987bf14f0f8aac279b97f8b8cc6e263b" dependencies = [ - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -1117,7 +1117,7 @@ dependencies = [ "terminal_size", "textwrap", "trybuild", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -1821,7 +1821,7 @@ dependencies = [ "memchr", "nix", "unicode-segmentation", - "unicode-width", + "unicode-width 0.1.14", "utf8parse", "winapi", ] @@ -2131,7 +2131,7 @@ checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" dependencies = [ "smawk", "unicode-linebreak", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -2338,9 +2338,15 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] name = "unicode-width" -version = "0.1.13" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "unicode-width" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" +checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" [[package]] name = "unicode-xid" diff --git a/assembly/Cargo.toml b/assembly/Cargo.toml index da461bc39..64826d5ce 100644 --- a/assembly/Cargo.toml +++ b/assembly/Cargo.toml @@ -33,7 +33,7 @@ regex = { version = "1.10", optional = true, default-features = false, features smallvec = { version = "1.13", features = ["union", "const_generics", "const_new"] } thiserror = { package = "miden-thiserror", version = "1.0", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes"] } -unicode-width = { version = "0.1", features = ["no_std"] } +unicode-width = { version = "0.2", features = ["no_std"] } vm-core = { package = "miden-core", path = "../core", version = "0.10", default-features = false, features = [ "diagnostics", ] }