diff --git a/Cargo.lock b/Cargo.lock index b7f479d2e..4a5254b57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1288,6 +1288,7 @@ dependencies = [ "smallstr", "smallvec", "tempfile", + "tinytemplate", "uuid", ] @@ -2305,9 +2306,9 @@ dependencies = [ [[package]] name = "tinytemplate" -version = "1.2.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2ada8616fad06a2d0c455adc530de4ef57605a8120cc65da9653e0e9623ca74" +checksum = "6d3dc76004a03cec1c5932bca4cdc2e39aaa798e3f82363dd94f9adf6098c12f" dependencies = [ "serde", "serde_json", diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 9f378f14c..67b3a1155 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -46,6 +46,10 @@ itertools = "0.10.0" # logging log = "0.4.14" +# We temporarily depend on this crate just to fix this issue +# https://github.com/bheisler/TinyTemplate/pull/17 +tinytemplate = "=1.1.0" + [dev-dependencies] criterion = "0.3.4" maplit = "1.0.2"