simple-c2pa

This is a fork of https://gitlab.com/guardianproject/proofmode/simple-c2pa
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/simple-c2pa.git
Log | Files | Refs | README | LICENSE

Cargo.toml (481B)


      1 [package]
      2 name = "simple-c2pa"
      3 version = "0.0.14"
      4 edition = "2021"
      5 
      6 [dependencies]
      7 c2pa = { version = "0.32.2", features = ["file_io", "add_thumbnails"], git = "https://github.com/mtrnords-photography-manager/c2pa-rs.git" }
      8 openssl = "0.10.48"
      9 ring = "0.17.7"
     10 serde = "1.0.195"
     11 serde_json = "1.0.111"
     12 tempfile = "3.9.0"
     13 thiserror = "1.0.56"
     14 tracing = "0.1.40"
     15 
     16 [profile.release]
     17 strip = true
     18 opt-level = "z"
     19 lto = true
     20 codegen-units = 1
     21 panic = "abort"
     22 
     23 [lib]
     24 name = "simple_c2pa"