Skip to content

Commit

Permalink
Merge pull request #5 from sebastienrousseau/feat/kyberlib
Browse files Browse the repository at this point in the history
fix(kyberlib): 🐛 Using outdated edition for no reason
  • Loading branch information
sebastienrousseau authored Dec 25, 2023
2 parents a04fc6f + e620bfe commit 91c7b75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build = "build.rs"
categories = ["algorithms", "cryptography", "wasm", "no-std"]
description = "A Robust Rust Library for CRYSTALS-Kyber Post-Quantum Cryptography."
documentation = "https://docs.rs/kyberlib"
edition = "2018"
edition = "2021"
exclude = [
"/.git/*",
"/.github/*",
Expand All @@ -27,7 +27,8 @@ license = "MIT OR Apache-2.0"
name = "kyberlib"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/kyberlib"
version = "0.0.2"
rust-version = "1.71.1"
version = "0.0.3"

[dependencies]
aes = { version = "0.8.3", optional = true }
Expand All @@ -49,8 +50,8 @@ optional = true
benchmarking = ["criterion"]

[build-dependencies]
cc = {version = "1.0.73", optional = true }
nasm-rs = {version = "0.2.4", optional = true }
cc = {version = "1.0.83", optional = true }
nasm-rs = {version = "0.2.5", optional = true }

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down

0 comments on commit 91c7b75

Please sign in to comment.