From ef54c0ed83ea33261f1872e27753a76fe8552916 Mon Sep 17 00:00:00 2001 From: Watanabe Koya Date: Sat, 28 Dec 2024 00:11:32 +0900 Subject: [PATCH] Fix memcached dependencies's doc bug The library has been switched from pycrypto to cryptography. The document was outdated, so it should be updated. Change-Id: I08a94cb31ecb230ed6e6310e4fe33f9f57323ce0 --- doc/source/middlewarearchitecture.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/middlewarearchitecture.rst b/doc/source/middlewarearchitecture.rst index 19af4a16..b424c4a5 100644 --- a/doc/source/middlewarearchitecture.rst +++ b/doc/source/middlewarearchitecture.rst @@ -402,12 +402,12 @@ Memcached dependencies In order to use `memcached`_ it is necessary to install the `python-memcached`_ library. If data stored in `memcached`_ will need to be encrypted it is also -necessary to install the `pycrypto`_ library. These libs are not listed in +necessary to install the `cryptography`_ library. These libs are not listed in the requirements.txt file. .. _`memcached`: http://memcached.org/ .. _`python-memcached`: https://pypi.org/project/python-memcached -.. _`pycrypto`: https://pypi.org/project/pycrypto +.. _`cryptography`: https://pypi.org/project/cryptography Memcache Protection ===================