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 486eb585809ddfae3322f1b03808e4e66a8db8c7
parent e8f591d6f2ea23759ea1e632f678640fb038aa95
Author: Eric Scouten <scouten@adobe.com>
Date:   Mon,  8 Aug 2022 11:29:20 -0700

(IGNORE) Proofreading in README file
Diffstat:
MREADME.md | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -49,12 +49,12 @@ Add this to your `Cargo.toml`: c2pa = "0.11.3" ``` -If you want to read or write a manifest file, add the `file_io` dependency to your `Cargo.toml`, for example: +If you want to read or write a manifest file, add the `file_io` dependency to your `Cargo.toml`. For example: ``` -c2pa = {version="0.11.0", features=["file_io"]} +c2pa = { version = "0.11.0", features = ["file_io"] } ``` -NOTE: If you are building for WASM. omit the `file_io` dependency. +NOTE: If you are building for WASM, omit the `file_io` dependency. ## Crate features @@ -65,7 +65,7 @@ The Rust SDK crate provides: * `file_io` enables manifest generation, signing via OpenSSL, and embedding manifests in various file formats. * `serialize_thumbnails` includes binary thumbnail data in the [Serde](https://serde.rs/) serialization output. * `xmp_write` enables updating XMP on embed with the `dcterms:provenance` field. (Requires [xmp_toolkit](https://crates.io/crates/xmp_toolkit).) -* `no_interleaved_io` forces fully-synchronous I/O; Otherwise, the SDK uses threaded I/O for some operations to improve performance. +* `no_interleaved_io` forces fully-synchronous I/O; otherwise, the SDK uses threaded I/O for some operations to improve performance. ## License