Skip to content

Commit

Permalink
build(deps): Update itertools requirement from 0.12.1 to 0.13.0 in /p…
Browse files Browse the repository at this point in the history
…ackages/mrml-core (#425)

* build(deps): Update itertools requirement in /packages/mrml-core

Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* build(mrml-core): apply changes

Signed-off-by: Jérémie Drouet <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Jérémie Drouet <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jérémie Drouet <[email protected]>
  • Loading branch information
dependabot[bot] and jdrouet authored May 17, 2024
1 parent d115a5b commit 5b9c66c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mrml-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ url = { version = "^2", optional = true }

# macros
mrml-json-macros = { version = "0.1", path = "./lib/mrml-json-macros", optional = true }
itertools = { version = "0.12.1" }
itertools = { version = "0.13.0" }
enum_dispatch = { version = "0.3.13", optional = true }
enum-as-inner = { version = "0.6.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion packages/mrml-core/src/mj_include/head/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ mod tests {
let mj_title = MjTitle::from("Hello Old World!".to_string());
let mj_include_title = MjTitle::from("Hello New World!".to_string());
let mut mj_include = MjIncludeHead::default();
mj_include.attributes.path = "partial.mjml".to_owned();
mj_include.attributes.path = "partial.mjml".to_string();
mj_include
.children
.push(MjIncludeHeadChild::MjTitle(mj_include_title));
Expand Down
2 changes: 2 additions & 0 deletions packages/mrml-wasm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::empty_docs)]

// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
#[cfg(feature = "wee_alloc")]
Expand Down
2 changes: 2 additions & 0 deletions packages/mrml-wasm/src/render/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::empty_docs)]

use std::borrow::Cow;
use std::collections::HashMap;

Expand Down

0 comments on commit 5b9c66c

Please sign in to comment.