Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atlas-c2pa-lib"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

while I'm here ;)

Suggested change
edition = "2021"
edition = "2024"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will update it in the next PR, as cargo fmt will fail.

description = "A Rust library for creating, signing, and verifying machine learning assets with C2PA"
authors = ["Intel Labs"]
Expand Down
2 changes: 1 addition & 1 deletion src/cose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ use openssl::sign::{Signer, Verifier};
use std::str::FromStr;

/// Supported hash algorithms for COSE signing and verification
#[derive(Debug, Clone)]
#[derive(Debug, PartialEq, Clone)]
pub enum HashAlgorithm {
/// SHA-256 hash algorithm (256-bit)
Sha256,
Expand Down