From 30563daece014e69000180f033cddb5edfe9caba Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 20 Jun 2022 23:31:48 -0700 Subject: [PATCH] Mention update of `actix-web` in `actix-gcd` example. --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1acfc79..0d5b133 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,14 @@ terms of the MIT license. See [LICENSE-MIT](LICENSE-MIT) for details. common denominator of a list of numbers. - The `actix-gcd` directory holds the code for the simple web service, - implemented using the [`actix-web`] framework, that computes greatest common - denominators. - -- The Mandelbrot plotting program has its own repository, at + implemented using the [`actix-web`] framework, that computes + greatest common denominators. + + Note that the code shown here has been updated to use a newer + version of `actix-web` than shown in the book, to address security + holes in earlier versions of the framework. + +- the Mandelbrot plotting program has its own repository, at `https://github.com/ProgrammingRust/mandelbrot`. This repository contains several branches, each showing a different implementation strategy. The `single-threaded` branch holds the code for the single-threaded version, and