From 0e1ae581969b0ab6489a867723470007f0b92472 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Sun, 07 Apr 2024 15:46:24 +0000 Subject: [PATCH] fix: update hi-doc --- --- a/Cargo.lock +++ b/Cargo.lock @@ -380,9 +380,9 @@ [[package]] name = "hi-doc" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "748c617f3021ee027bf6f94d54f9c28877467cb79c5847d0dd70c3a6db4da0fc" +checksum = "d2390a0c9be1370168ef9557833bad3bfa37e1720df61d7f7034f18c07b4e006" dependencies = [ "num-traits", "rand", @@ -1074,9 +1074,9 @@ [[package]] name = "smallvec" -version = "1.13.1" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "static_assertions" --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ # I'm against using miette, because I want to reuse data between interpreter and annotations, yet miette # and other libraries want to handle spans etc by itself, which is okay for compiler diagnostics, but is # bad for interpreter, where interpreter and parser are paired much closer. -hi-doc = "0.1.0" +hi-doc = "0.1.1" annotate-snippets = "0.10.1" # CLI -- gitstuff