c2pa-rs

A fork of https://github.com/contentauth/c2pa-rs/
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/c2pa-rs.git
Log | Files | Refs | README

commit 4aca6b849b79bea1b176da7b3d61c2be8cc03653
parent 07532b9515b24b6297591357cc1bc17e182c2f9b
Author: Eric Scouten <scouten@adobe.com>
Date:   Tue,  4 Apr 2023 20:17:42 -0400

Avoid chrono's transitive dependency on time crate (#222)

Avoids a security vulnerability
Diffstat:
Msdk/Cargo.toml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml @@ -56,7 +56,7 @@ blake3 = "1.0.0" bytes = "1.1.0" byteorder = { version = "1.4.3", default-features = false } byteordered = "0.6.0" -chrono = { version = "0.4.19", features = ["wasmbind"] } +chrono = { version = "0.4.24", default-features = false, features = ["serde", "wasmbind"] } ciborium = "0.2.0" conv = "0.3.3" coset = "0.3.1"