diff --git a/Cargo.lock b/Cargo.lock index 50bfd36195..15c5d13b3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "miette" version = "3.0.1-alpha.0" -source = "git+https://github.com/zkat/miette?rev=183ecb9#183ecb9b78a1c22d832e979db5054dcac36d8b7a" +source = "git+https://github.com/zkat/miette?branch=release/3.0.0#491ce7c0ce1f04c9b6fc09c250f188c1ec77df53" dependencies = [ "atty", "backtrace", @@ -354,13 +354,12 @@ dependencies = [ "term_size", "textwrap", "thiserror", - "unicode-width", ] [[package]] name = "miette-derive" version = "3.0.0-alpha.0" -source = "git+https://github.com/zkat/miette?rev=183ecb9#183ecb9b78a1c22d832e979db5054dcac36d8b7a" +source = "git+https://github.com/zkat/miette?branch=release/3.0.0#491ce7c0ce1f04c9b6fc09c250f188c1ec77df53" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 36592d6a25..767c737642 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ nu-engine = { path="./crates/nu-engine" } nu-parser = { path="./crates/nu-parser" } nu-protocol = { path = "./crates/nu-protocol" } nu-table = { path = "./crates/nu-table" } -miette = { git = "https://github.com/zkat/miette", rev = "183ecb9" } +miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0" } # miette = { path = "../miette" } # mimalloc = { version = "*", default-features = false } diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 9db871f112..005bc686be 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" nu-engine = { path = "../nu-engine" } nu-parser = { path = "../nu-parser" } nu-protocol = { path = "../nu-protocol" } -miette = { git = "https://github.com/zkat/miette", rev = "183ecb9", features = ["fancy"] } +miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0", features = ["fancy"] } # miette = { path = "../../../miette", features = ["fancy"] } thiserror = "1.0.29" nu-ansi-term = "0.36.0" diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 3372a8b633..b3775feedf 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2018" [dependencies] -miette = { git = "https://github.com/zkat/miette", rev = "183ecb9" } +miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0" } # miette = { path = "../../../miette" } thiserror = "1.0.29" nu-protocol = { path = "../nu-protocol"} diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index e15c50e54c..1f92f67651 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" [dependencies] thiserror = "1.0.29" -miette = { git = "https://github.com/zkat/miette", rev = "183ecb9" } +miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0" } # miette = { path = "../../../miette" }