From c41473bf69e93dc73962e78cca69207ee0dd3f61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:05:16 +0000 Subject: [PATCH] Bump plist from 1.3.1 to 1.4.1 Bumps [plist](https://github.com/ebarnard/rust-plist) from 1.3.1 to 1.4.1. - [Release notes](https://github.com/ebarnard/rust-plist/releases) - [Commits](https://github.com/ebarnard/rust-plist/compare/v1.3.1...v1.4.1) --- updated-dependencies: - dependency-name: plist dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 +++++++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e29d8e4..a2e4bdc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -46,6 +46,12 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +[[package]] +name = "base64" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" + [[package]] name = "bindgen" version = "0.63.0" @@ -263,7 +269,7 @@ dependencies = [ [[package]] name = "glifparser" -version = "1.2.7" +version = "1.2.8" dependencies = [ "derivative", "derive_more", @@ -543,16 +549,16 @@ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" [[package]] name = "plist" -version = "1.3.1" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225" +checksum = "9469799ca90293a376f68f6fcb8f11990d9cff55602cfba0ba83893c973a7f46" dependencies = [ - "base64", + "base64 0.21.0", "indexmap", "line-wrap", + "quick-xml", "serde", "time", - "xml-rs", ] [[package]] @@ -576,6 +582,15 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "quick-xml" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" +dependencies = [ + "memchr", +] + [[package]] name = "quote" version = "1.0.23" @@ -908,7 +923,7 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b97acb4c28a254fd7a4aeec976c46a7fa404eac4d7c134b30c75144846d7cb8f" dependencies = [ - "base64", + "base64 0.13.1", "chunked_transfer", "flate2", "log", diff --git a/Cargo.toml b/Cargo.toml index 751f11b..1aca141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ trees = "0.4" skia-safe = { version = ">0.0", optional = true } image = { version = "0.24", features = ["png"], default-features = false, optional = true } serde = { version = "1.0", features = ["derive"], optional = true } -plist = "1.3" +plist = "1.4" itertools = "0.10" flo_curves = { version = "0.6", optional = true } float-cmp = "0.9"