Skip to content

Commit

Permalink
update rust edition
Browse files Browse the repository at this point in the history
  • Loading branch information
thomwiggers committed Oct 16, 2023
1 parent 12edfcb commit 80d389d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Bring SPHINCS+ to closer to FIPS variants by removing -robust and Haraka variants
* Small fix in Falcon
* Add Falcon NEON implementation
* Update Rust edition to 2021

## 2023-04-26

Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ members=[
"pqcrypto-dilithium",
"pqcrypto-falcon",
"pqcrypto-sphincsplus",
]
]
resolver="2"
2 changes: 1 addition & 1 deletion pqcrypto-classicmceliece/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum Key-Encapsulation Mechanism classicmceliece"
readme = "README.md"
version = "0.2.0"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-dilithium/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum Signature Scheme dilithium"
readme = "README.md"
version = "0.5.0"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-falcon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum Signature Scheme falcon"
readme = "README.md"
version = "0.3.0"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-hqc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum Key-Encapsulation Mechanism hqc"
readme = "README.md"
version = "0.2.0"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-kyber/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum Key-Encapsulation Mechanism kyber"
readme = "README.md"
version = "0.7.7"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-sphincsplus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum Signature Scheme sphincsplus"
readme = "README.md"
version = "0.7.0"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-template/scheme/Cargo.toml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum {% if type == "kem" %}Key-Encapsulation Mechanism{%
readme = "README.md"
version = "{{ version }}"
authors = ["Thom Wiggers <thom@thomwiggers.nl>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
Expand Down
1 change: 1 addition & 0 deletions pqcrypto-template/workspace-Cargo.toml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ members=[
"{{ name }}",
{% endfor %}
]
resolver="2"

0 comments on commit 80d389d

Please sign in to comment.