use the fancy

This commit is contained in:
JT
2021-09-21 16:10:29 +12:00
parent 4841d62d76
commit 3c18cac134
6 changed files with 8 additions and 10 deletions

View File

@ -7,7 +7,7 @@ edition = "2018"
nu-engine = { path = "../nu-engine" }
nu-parser = { path = "../nu-parser" }
nu-protocol = { path = "../nu-protocol" }
miette = { version = "3.0.0-alpha.0", features = ["fancy"] }
miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0", features = ["fancy"] }
thiserror = "1.0.29"
nu-ansi-term = "0.36.0"
reedline = { git = "https://github.com/jntrnr/reedline", branch = "main" }

View File

@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2018"
[dependencies]
miette = { version = "3.0.0-alpha.0" }
miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0" }
thiserror = "1.0.29"
nu-protocol = { path = "../nu-protocol"}

View File

@ -39,7 +39,7 @@ pub enum ParseError {
#[diagnostic(code(nu::parser::type_mismatch), url(docsrs))]
Mismatch(String, String, #[label("expected {0}, found {1}")] Span), // expected, found, span
#[error("Unsupported operation.")]
#[error("Types mismatched for operation.")]
#[diagnostic(
code(nu::parser::unsupported_operation),
url(docsrs),

View File

@ -7,4 +7,4 @@ edition = "2018"
[dependencies]
thiserror = "1.0.29"
miette = { version = "3.0.0-alpha.0" }
miette = { git = "https://github.com/zkat/miette", branch = "release/3.0.0" }