Skip to content

Commit 7cd8c89

Browse files
committed
v0.2.1 RC1
1 parent 4c96f4a commit 7cd8c89

File tree

6 files changed

+18
-15
lines changed

6 files changed

+18
-15
lines changed

.github/workflows/provenance.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build-attest
1+
name: provenance
22

33
on:
44
push:

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 0.2.1 (2024-06-18)
8+
## 0.2.1 (2024-06-19)
99

10-
- Internal rework based on review 2 feedback
10+
- Internal revision based on review 2 feedback
1111
- API: try_verify() -> verify() change to prevent usage mistakes
1212

1313

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ workspace = { exclude = ["ct_cm4", "dudect", "fuzz", "wasm"] }
33
[package]
44
name = "fips204"
55
version = "0.2.1"
6-
edition = "2021"
7-
license = "MIT OR Apache-2.0"
8-
description = "FIPS 204 (draft): Module-Lattice-Based Digital Signature"
96
authors = ["Eric Schorn <[email protected]>"]
10-
documentation = "https://docs.rs/fips204"
7+
description = "FIPS 204 (draft): Module-Lattice-Based Digital Signature"
118
categories = ["cryptography", "no-std"]
12-
repository = "https://github.com/integritychain/fips204"
9+
documentation = "https://docs.rs/fips204"
10+
edition = "2021"
1311
keywords = ["FIPS204", "lattice", "dilithium", "signature"]
12+
license = "MIT OR Apache-2.0"
13+
repository = "https://github.com/integritychain/fips204"
1414
# MSRV set at 1.70 for debian testing, e.g. https://packages.debian.org/search?keywords=rustc
1515
# This requires several marginally outdated dependencies, see below
1616
rust-version = "1.70"

ct_cm4/Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "fips204-ct_cm4"
33
version = "0.2.1"
4-
license = "MIT OR Apache-2.0"
5-
description = "Cortex-M4 testbench for FIPS 204 (draft) ML-DSA"
64
authors = ["Eric Schorn <[email protected]>"]
7-
publish = false
5+
description = "Cortex-M4 testbench for FIPS 204 (draft) ML-DSA"
86
edition = "2021"
7+
license = "MIT OR Apache-2.0"
8+
publish = false
99
rust-version = "1.70"
1010

1111

@@ -29,5 +29,6 @@ opt-level = 3
2929
codegen-units = 1
3030

3131

32+
3233
# If cargo complains about 'fixed' on MSRV 1.70, use version 1.23.1
3334
# cargo update -p [email protected] --precise 1.23.1

dudect/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name = "fips204-dudect"
33
version = "0.2.1"
44
authors = ["Eric Schorn <[email protected]>"]
55
description = "Dudect testbench for FIPS 204 (draft) ML-DSA"
6-
publish = false
76
edition = "2021"
87
license = "MIT OR Apache-2.0"
8+
publish = false
99
rust-version = "1.70"
1010

1111

fuzz/Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "fips204-fuzz"
33
version = "0.2.1"
4-
publish = false
4+
authors = ["Eric Schorn <[email protected]>"]
5+
description = "Fuzz harness for FIPS 204 (draft) ML-DSA"
56
edition = "2021"
67
license = "MIT OR Apache-2.0"
8+
publish = false
79
rust-version = "1.70"
810

911

@@ -20,8 +22,8 @@ path = ".."
2022

2123

2224
# Prevent this from interfering with workspaces
23-
[workspace]
24-
members = ["."]
25+
#[workspace]
26+
#members = ["."]
2527

2628

2729
[profile.release]

0 commit comments

Comments
 (0)