diff --git a/Cargo.lock b/Cargo.lock index 5f059d5..31921f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,9 +264,9 @@ dependencies = [ [[package]] name = "handlebars" -version = "4.4.0" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" +checksum = "faa67bab9ff362228eb3d00bd024a4965d8231bbb7921167f0cfa66c6626b225" dependencies = [ "log", "pest", @@ -683,18 +683,18 @@ checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" [[package]] name = "serde" -version = "1.0.190" +version = "1.0.192" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" +checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.190" +version = "1.0.192" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" +checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index feeb945..de98cc3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] # Public dependencies (present in the public API). quick-xml = { version = "0.31.0", optional = true } -handlebars = { version = "4.0.0", optional = true } +handlebars = { version = "4.5.0", optional = true } portable-pty = { version = "0.8.0", optional = true } # Private dependencies (not exposed in the public API). diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e0e9d4f..68babda 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -17,7 +17,7 @@ path = "src/main.rs" [dependencies] anyhow = "1.0.40" clap = { version = "4.4.7", features = ["derive", "env", "wrap_help"] } -handlebars = "4.3.1" +handlebars = "4.5.0" humantime = "2.1.0" is-terminal = "0.4.9" serde_json = "1.0" diff --git a/e2e-tests/rainbow/Cargo.toml b/e2e-tests/rainbow/Cargo.toml index 7fd2f19..774e6f4 100644 --- a/e2e-tests/rainbow/Cargo.toml +++ b/e2e-tests/rainbow/Cargo.toml @@ -23,7 +23,7 @@ path = "../.." features = ["tracing"] [dev-dependencies] -handlebars = "4.3.1" +handlebars = "4.5.0" pretty_assertions = "1.0.0" tempfile = "3.8.1" test-casing = "0.1.2"