summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-11-22 17:52:57 -0500
committerDan Davison <dandavison7@gmail.com>2021-11-22 17:52:57 -0500
commit3caaa6be586856271dbbd3e0366b191af43c6297 (patch)
tree41035cf694e6da853d5916f604bee99add078b20
parent513e87520db11ef7eca526038979aa84ae53540c (diff)
Bump plist version to pick up security fixRUSTSEC-2020-0159
Fixes RUSTSEC-2020-0159 Ref https://github.com/ebarnard/rust-plist/pull/72
-rw-r--r--Cargo.lock19
-rw-r--r--Cargo.toml1
2 files changed, 16 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 042c6e48..a0902a07 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -157,7 +157,7 @@ dependencies = [
"libc",
"num-integer",
"num-traits",
- "time",
+ "time 0.1.44",
"winapi",
]
@@ -374,6 +374,7 @@ dependencies = [
"lazy_static",
"palette",
"pathdiff",
+ "plist",
"regex",
"serde",
"serde_json",
@@ -757,15 +758,15 @@ checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
[[package]]
name = "plist"
-version = "1.0.1"
+version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4dc57ccf442c7414b790e8e7b72fb4d776a66c7680129360946d9aaa6f5311e9"
+checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
dependencies = [
"base64",
- "chrono",
"indexmap",
"line-wrap",
"serde",
+ "time 0.3.5",
"xml-rs",
]
@@ -1112,6 +1113,16 @@ dependencies = [
]
[[package]]
+name = "time"
+version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41effe7cfa8af36f439fac33861b66b049edc6f9a32331e2312660529c1c24ad"
+dependencies = [
+ "itoa",
+ "libc",
+]
+
+[[package]]
name = "tinyvec"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index daaa3edd..95aeecb4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,6 +31,7 @@ itertools = "0.10.1"
lazy_static = "1.4"
palette = "0.6.0"
pathdiff = "0.2.1"
+plist = "1.3.1"
regex = "1.4.6"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.70"