diff --git a/Cargo.toml b/Cargo.toml index 4cec7eb..b59dc1a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "qfall-schemes" -version = "0.1.0" +version = "0.1.1" edition = "2024" -rust-version = "1.85" # due to rand and rand_distr dependency +rust-version = "1.87" # due to wit_bindgen dependency description = "Collection of prototype implementations of lattice-based cryptography" readme = "README.md" homepage = "https://qfall.github.io" @@ -17,7 +17,7 @@ autobenches = false [dependencies] qfall-tools = "0" qfall-math = "0" -sha2 = "0" +sha2 = "0.11.0" serde = {version="1", features=["derive"]} serde_json = "1" typetag = "0" diff --git a/README.md b/README.md index d3786c4..8cf8f64 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This `schemes`-crate collects implementations of lattice-based constructions s.t ## Quick-Start First, ensure that you use a Unix-like distribution (Linux or MacOS). Setup [WSL](https://learn.microsoft.com/en-us/windows/wsl/install) if you're using Windows. This is required due to this crate's dependency on FLINT. -Then, make sure your `rustc --version` is `1.85` or newer. +Then, make sure your `rustc --version` is `1.87` or newer. Furthermore, it's required that `m4`, a C-compiler such as `gcc`, and `make` are installed. ```bash diff --git a/benches/README.md b/benches/README.md index 7a3e66d..18e79aa 100644 --- a/benches/README.md +++ b/benches/README.md @@ -1,5 +1,5 @@