diff options
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/eval/Cargo.lock | 21 | ||||
-rw-r--r-- | tvix/eval/Cargo.toml | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tvix/eval/Cargo.lock b/tvix/eval/Cargo.lock index c5c3e324e3ac..83e0b25ee21a 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 ac01b595be22..60c0f12e6f95 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. |