Reduce required dependencies for diagnostics (#6648)

Disable backtrace on miette
- gimli crate requires several seconds
Disable diagnostics on wax
- depends on an outdated miette version

Builds fine, no observable loss in diagnostics quality of life

Removes 10 crates that have to be compiled.
This commit is contained in:
Stefan Holderbach
2022-10-24 21:42:32 +02:00
committed by GitHub
parent 6a7a60429f
commit 92ab8b831b
6 changed files with 10 additions and 87 deletions

View File

@ -11,7 +11,7 @@ version = "0.70.1"
bytesize = "1.1.0"
chrono = "0.4.21"
itertools = "0.10"
miette = "5.1.0"
miette = {version = "5.1.0", features = ["fancy-no-backtrace"]}
thiserror = "1.0.31"
serde_json = "1.0"
nu-path = {path = "../nu-path", version = "0.70.1" }