diff --git a/Cargo.lock b/Cargo.lock index e40a9e4bd..e2c53d442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,11 +69,11 @@ dependencies = [ [[package]] name = "askama" -version = "0.14.0" +version = "0.15.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4" +checksum = "9b8246bcbf8eb97abef10c2d92166449680d41d55c0fc6978a91dec2e3619608" dependencies = [ - "askama_derive", + "askama_macros", "itoa", "percent-encoding", "serde", @@ -82,9 +82,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.14.0" +version = "0.15.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f" +checksum = "2f9670bc84a28bb3da91821ef74226949ab63f1265aff7c751634f1dd0e6f97c" dependencies = [ "askama_parser", "basic-toml", @@ -97,16 +97,26 @@ dependencies = [ "syn", ] +[[package]] +name = "askama_macros" +version = "0.15.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0756b45480437dded0565dfc568af62ccce146fb6cfe902e808ba86e445f44f" +dependencies = [ + "askama_derive", +] + [[package]] name = "askama_parser" -version = "0.14.0" +version = "0.15.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358" +checksum = "5d0af3691ba3af77949c0b5a3925444b85cb58a0184cc7fec16c68ba2e7be868" dependencies = [ - "memchr", + "rustc-hash", "serde", "serde_derive", - "winnow", + "unicode-ident", + "winnow 1.0.1", ] [[package]] @@ -293,7 +303,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9adb46b05e2f53dcf6a7dfc242e4ce9eb60c369b6b6eb10826a01e93167f59c6" dependencies = [ - "diplomat_core", + "diplomat_core 0.14.0", "proc-macro2", "quote", "syn", @@ -314,14 +324,14 @@ checksum = "0569bd3caaf13829da7ee4e83dbf9197a0e1ecd72772da6d08f0b4c9285c8d29" [[package]] name = "diplomat-tool" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cff1547f90c8ccb45024e89f9597c1958d54e1374a28e5e33bc278244fc2b25" +checksum = "3a742eeda95cd614873b815c4577519b07b737e2dceaf65f47d983bbdaabc5d7" dependencies = [ "askama", "clap", "colored", - "diplomat_core", + "diplomat_core 0.15.0", "displaydoc", "heck", "indenter", @@ -339,6 +349,20 @@ name = "diplomat_core" version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51731530ed7f2d4495019abc7df3744f53338e69e2863a6a64ae91821c763df1" +dependencies = [ + "proc-macro2", + "quote", + "serde", + "smallvec", + "strck", + "syn", +] + +[[package]] +name = "diplomat_core" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf41b94101a4bce993febaf0098092b0bb31deaf0ecaf6e0a2562465f61b383" dependencies = [ "displaydoc", "either", @@ -961,7 +985,7 @@ dependencies = [ "serde_spanned", "toml_datetime", "toml_write", - "winnow", + "winnow 0.7.10", ] [[package]] @@ -1228,6 +1252,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5" +dependencies = [ + "memchr", +] + [[package]] name = "writeable" version = "0.6.2" diff --git a/Cargo.toml b/Cargo.toml index 7f14ffaed..ec9a7dbfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ zoneinfo64 = "0.2.0" ixdtf = "0.6.4" # Diplomat -diplomat-tool = { version = "0.14.0", default-features = false } +diplomat-tool = { version = "0.15.0", default-features = false } diplomat-runtime = { version = "0.14.0", default-features = false } diplomat = { version = "0.14.0", default-features = false }