diff --git a/Cargo.lock b/Cargo.lock index c68df59..f9f0e42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,7 +446,7 @@ dependencies = [ "serde 1.0.92 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.92 (registry+https://github.com/rust-lang/crates.io-index)", "syntect 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "utils 0.1.0", ] @@ -758,7 +758,7 @@ dependencies = [ "image 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)", "syntect 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "tera 1.0.0-beta.10 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -836,7 +836,7 @@ dependencies = [ "serde 1.0.92 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.92 (registry+https://github.com/rust-lang/crates.io-index)", "tera 1.0.0-beta.10 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "utils 0.1.0", ] @@ -2502,7 +2502,7 @@ dependencies = [ "reqwest 0.9.18 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "tera 1.0.0-beta.10 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "utils 0.1.0", ] @@ -2780,6 +2780,14 @@ dependencies = [ "serde 1.0.92 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "toml" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.92 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "trust-dns-proto" version = "0.7.4" @@ -3457,6 +3465,7 @@ dependencies = [ "checksum tokio-trace-core 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9c8a256d6956f7cb5e2bdfe8b1e8022f1a09206c6c2b1ba00f3b746b260c613" "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92" "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" +"checksum toml 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b8c96d7873fa7ef8bdeb3a9cda3ac48389b4154f32b9803b4bc26220b677b039" "checksum trust-dns-proto 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5559ebdf6c2368ddd11e20b11d6bbaf9e46deb803acd7815e93f5a7b4a6d2901" "checksum trust-dns-resolver 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c9992e58dba365798803c0b91018ff6c8d3fc77e06977c4539af2a6bfe0a039" "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" diff --git a/components/config/Cargo.toml b/components/config/Cargo.toml index a8090aa..f377970 100644 --- a/components/config/Cargo.toml +++ b/components/config/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Vincent Prouillet "] [dependencies] -toml = "0.4" +toml = "0.5" serde = "1" serde_derive = "1" chrono = "0.4" diff --git a/components/errors/Cargo.toml b/components/errors/Cargo.toml index 11b0863..4b67b30 100644 --- a/components/errors/Cargo.toml +++ b/components/errors/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Vincent Prouillet "] [dependencies] -tera = "1.0.0-alpha.3" -toml = "0.4" +tera = "1.0.0-beta.10" +toml = "0.5" image = "0.21" syntect = "3" diff --git a/components/front_matter/Cargo.toml b/components/front_matter/Cargo.toml index 3b80d83..ab53ad4 100644 --- a/components/front_matter/Cargo.toml +++ b/components/front_matter/Cargo.toml @@ -4,11 +4,11 @@ version = "0.1.0" authors = ["Vincent Prouillet "] [dependencies] -tera = "1.0.0-alpha.3" +tera = "1.0.0-beta.10" chrono = "0.4" serde = "1" serde_derive = "1" -toml = "0.4" +toml = "0.5" regex = "1" lazy_static = "1" diff --git a/components/imageproc/Cargo.toml b/components/imageproc/Cargo.toml index 2a88794..39811be 100644 --- a/components/imageproc/Cargo.toml +++ b/components/imageproc/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Vojtěch Král "] [dependencies] lazy_static = "1" regex = "1.0" -tera = "1.0.0-alpha.3" +tera = "1.0.0-beta.10" image = "0.21" rayon = "1" diff --git a/components/library/Cargo.toml b/components/library/Cargo.toml index 289d3e3..94af375 100644 --- a/components/library/Cargo.toml +++ b/components/library/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Vincent Prouillet "] slotmap = "0.2" rayon = "1" chrono = { version = "0.4", features = ["serde"] } -tera = "1.0.0-alpha.3" +tera = "1.0.0-beta.10" serde = "1" serde_derive = "1" slug = "0.1" diff --git a/components/rendering/Cargo.toml b/components/rendering/Cargo.toml index 7d8be3a..121a363 100644 --- a/components/rendering/Cargo.toml +++ b/components/rendering/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Vincent Prouillet "] [dependencies] -tera = { version = "1.0.0-beta.8", features = ["preserve_order"] } +tera = { version = "1.0.0-beta.10", features = ["preserve_order"] } syntect = "3" pulldown-cmark = "0.5" slug = "0.1" diff --git a/components/site/Cargo.toml b/components/site/Cargo.toml index c1fc9ef..54d9494 100644 --- a/components/site/Cargo.toml +++ b/components/site/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Vincent Prouillet "] [dependencies] -tera = "1.0.0-alpha.3" +tera = "1.0.0-beta.10" glob = "0.3" rayon = "1" serde = "1" diff --git a/components/templates/Cargo.toml b/components/templates/Cargo.toml index 9713d0d..d802b41 100644 --- a/components/templates/Cargo.toml +++ b/components/templates/Cargo.toml @@ -4,11 +4,11 @@ version = "0.1.0" authors = ["Vincent Prouillet "] [dependencies] -tera = "1.0.0-alpha.3" +tera = "1.0.0-beta.10" base64 = "0.10" lazy_static = "1" pulldown-cmark = "0.5" -toml = "0.4" +toml = "0.5" csv = "1" image = "0.21" serde_json = "1.0" diff --git a/components/utils/Cargo.toml b/components/utils/Cargo.toml index 3be804f..75f2eeb 100644 --- a/components/utils/Cargo.toml +++ b/components/utils/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Vincent Prouillet "] [dependencies] errors = { path = "../errors" } -tera = "1.0.0-beta.8" +tera = "1.0.0-beta.10" unicode-segmentation = "1.2" walkdir = "2" toml = "0.4"