Skip to content

Commit

Permalink
Update Rust edition
Browse files Browse the repository at this point in the history
  • Loading branch information
thomwiggers committed Apr 26, 2023
1 parent 319ba23 commit 7da3cf1
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion implementations.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

pqcrypto_version: 0.17.0
traits_version: 0.3.4
traits_version: 0.3.5

kems:
kyber:
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-classicmceliece/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4", default-features = false }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false }
libc = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-dilithium/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4", default-features = false }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false }
libc = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-falcon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4", default-features = false }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false }
libc = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-hqc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4", default-features = false }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false }
libc = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-kyber/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4", default-features = false }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false }
libc = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-sphincsplus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4", default-features = false }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false }
libc = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
serde-big-array = { version = "0.5.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion pqcrypto-template/pqcrypto/Cargo.toml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Post-Quantum cryptographic primitives"
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
4 changes: 2 additions & 2 deletions pqcrypto-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "pqcrypto-traits"
version = "0.3.4"
version = "0.3.5"
authors = ["Thom Wiggers <[email protected]>"]
edition = "2018"
edition = "2021"
description = "Shared traits for post-quantum cryptographic primitives"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
Expand Down
4 changes: 2 additions & 2 deletions pqcrypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ description = "Post-Quantum cryptographic primitives"
readme = "README.md"
version = "0.17.0"
authors = ["Thom Wiggers <[email protected]>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rustpq/"
repository = "https://github.com/rustpq/pqcrypto/"
keywords = ["cryptography", "post-quantum", "security"]
categories = ["cryptography"]

[dependencies]
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.4" }
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5" }
pqcrypto-kyber = { path = "../pqcrypto-kyber", version = "0.7.7", optional = true }
pqcrypto-classicmceliece = { path = "../pqcrypto-classicmceliece", version = "0.1.8", optional = true }
pqcrypto-hqc = { path = "../pqcrypto-hqc", version = "0.1.7", optional = true }
Expand Down

0 comments on commit 7da3cf1

Please sign in to comment.