about summary refs log tree commit diff
path: root/tvix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-09-11T21·34+0300
committertazjin <tazjin@tvl.su>2022-09-13T10·54+0000
commitdea6d9b73b773b2072fcfaa46e6b8989c51d241f (patch)
tree4391add48cdb5f7f193aae59889cbcafa38fb290 /tvix
parentc0a2a13c848c7ac06bb2e2846423b37d88258f81 (diff)
chore(tvix/eval): add dependency on codemap-diagnostic r/4827
This is a crate for source-span based error reporting. Since all of
our spans are already codemap spans, it is a good starting point.

We have to figure out quite a bit of logic for neat error printing;
later on if we want fancier presentation we might want to look at one
of the other libraries in this space like miette.

Change-Id: I4e28886af1ed199b7112d9dbf063c9f29b612bf1
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6531
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix')
-rw-r--r--tvix/eval/Cargo.lock21
-rw-r--r--tvix/eval/Cargo.toml1
2 files changed, 22 insertions, 0 deletions
diff --git a/tvix/eval/Cargo.lock b/tvix/eval/Cargo.lock
index c5c3e324e3..83e0b25ee2 100644
--- a/tvix/eval/Cargo.lock
+++ b/tvix/eval/Cargo.lock
@@ -90,6 +90,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "b9e769b5c8c8283982a987c6e948e540254f1058d5a74b8794914d4ef5fc2a24"
 
 [[package]]
+name = "codemap-diagnostic"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4ba0e6be8e2774e750f9e90625b490249715bece38a12f9d09e82477caba5028"
+dependencies = [
+ "atty",
+ "codemap",
+ "termcolor",
+]
+
+[[package]]
 name = "countme"
 version = "3.0.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -818,6 +829,15 @@ dependencies = [
 ]
 
 [[package]]
+name = "termcolor"
+version = "1.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
+dependencies = [
+ "winapi-util",
+]
+
+[[package]]
 name = "test-generator"
 version = "0.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -879,6 +899,7 @@ name = "tvix-eval"
 version = "0.1.0"
 dependencies = [
  "codemap",
+ "codemap-diagnostic",
  "criterion",
  "dirs",
  "itertools",
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml
index ac01b595be..60c0f12e6f 100644
--- a/tvix/eval/Cargo.toml
+++ b/tvix/eval/Cargo.toml
@@ -20,6 +20,7 @@ path-clean = "0.1"
 tabwriter = "1.2"
 rowan = "*" # pinned by rnix
 codemap = "0.1.3"
+codemap-diagnostic = "0.1.1"
 
 # rnix has not been released in a while (as of 2022-09-01), we will
 # use it from git.