1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00

chore: update minijinja to 2

This commit is contained in:
Rob Ede 2024-07-07 01:26:05 +01:00
parent 8baa0767a6
commit ea07cc2370
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@ -1747,7 +1747,7 @@ dependencies = [
"bitflags 2.4.1", "bitflags 2.4.1",
"cexpr", "cexpr",
"clang-sys", "clang-sys",
"itertools 0.11.0", "itertools 0.12.1",
"lazy_static", "lazy_static",
"lazycell", "lazycell",
"log", "log",
@ -4996,9 +4996,9 @@ dependencies = [
[[package]] [[package]]
name = "minijinja" name = "minijinja"
version = "1.0.21" version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55e877d961d4f96ce13615862322df7c0b6d169d40cab71a7ef3f9b9e594451e" checksum = "933ee10775d58fca8238a84fe165dfe4bde8b07d7574f24d76ffea91170f3ac6"
dependencies = [ dependencies = [
"memo-map", "memo-map",
"self_cell 1.0.1", "self_cell 1.0.1",
@ -5007,9 +5007,9 @@ dependencies = [
[[package]] [[package]]
name = "minijinja-autoreload" name = "minijinja-autoreload"
version = "1.0.21" version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d734de43ac09c38de7a53b552dff044a01d6c374831efa489cdc456f72907bc" checksum = "bfe3362301b5f450f0f07175cc8cacdd9edb352c7d0375af72646dfb5769fc2a"
dependencies = [ dependencies = [
"minijinja", "minijinja",
"notify 5.2.0", "notify 5.2.0",
@ -6163,7 +6163,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"itertools 0.11.0", "itertools 0.12.1",
"proc-macro2", "proc-macro2",
"quote", "quote",
"syn 2.0.48", "syn 2.0.48",
@ -8827,8 +8827,8 @@ version = "1.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 1.0.0",
"rand 0.7.3", "rand 0.8.5",
"static_assertions", "static_assertions",
] ]

View File

@ -10,5 +10,5 @@ actix-utils.workspace = true
env_logger.workspace = true env_logger.workspace = true
log.workspace = true log.workspace = true
minijinja = { version = "1", features = ["loader"] } minijinja = { version = "2", features = ["loader"] }
minijinja-autoreload = "1" minijinja-autoreload = "2"