index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2024-02-10 20:49:17.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2024-02-10 20:49:17.0 +00:00:00
commit
563367c5afeeef923ad974f562388aacf4398862 [patch]
tree
459bbba15fe02dfbafe8eed654fe9e3bf80a3b83
parent
1d4f423ee5d8086ee4687ff991374172e79b3d99
download
563367c5afeeef923ad974f562388aacf4398862.tar.gz

chore: minimum rust version 1.74.0



Diff

 .github/workflows/devel.yml          | 2 +-
 Cargo.toml                           | 2 +-
 docs/content/building-from-source.md | 2 +-
 fuzz/Cargo.toml                      | 1 -
 4 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/devel.yml b/.github/workflows/devel.yml
index 24074ad..816a973 100644
--- a/.github/workflows/devel.yml
+++ b/.github/workflows/devel.yml
@@ -69,7 +69,7 @@ jobs:
          # We test against the latest and minimum Rust stable version.
          - build: pinned
            os: ubuntu-22.04
            rust: 1.70.0
            rust: 1.74.0
          # Some of our release builds are generated by a nightly compiler to take
          # advantage of the latest optimizations/compile time improvements.
          - build: linux-musl
diff --git a/Cargo.toml b/Cargo.toml
index 178d50a..aa63688 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "static-web-server"
version = "2.25.0"
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.74.0"
authors = ["Jose Quintana <https://joseluisq.net>"]
license = "MIT OR Apache-2.0"
description = "A cross-platform, high-performance and asynchronous web server for static files-serving."
diff --git a/docs/content/building-from-source.md b/docs/content/building-from-source.md
index c69d321..e6a9016 100644
--- a/docs/content/building-from-source.md
+++ b/docs/content/building-from-source.md
@@ -6,7 +6,7 @@ Follow these instructions to either build **`SWS`** project from the source or t

If you want to build **SWS** from the source, all you need is a [Rust 2021 Edition]https://blog.rust-lang.org/2021/05/11/edition-2021.html installed.

So make sure to install Rust [1.70.0]https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html or newer (or nightly) along with [the toolchain(s)]https://rust-lang.github.io/rustup/concepts/toolchains.html of your preference.
So make sure to install Rust [1.74.0]https://blog.rust-lang.org/2023/11/16/Rust-1.74.0.html or newer (or nightly) along with [the toolchain(s)]https://rust-lang.github.io/rustup/concepts/toolchains.html of your preference.

Then clone the repository and use [Cargo]https://doc.rust-lang.org/cargo/ to build the project from the source.

diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml
index 6b6bab9..1cd246e 100644
--- a/fuzz/Cargo.toml
+++ b/fuzz/Cargo.toml
@@ -3,7 +3,6 @@ name = "static-web-server-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
rust-version = "1.70.0"

[package.metadata]
cargo-fuzz = true