diff --git a/project-words.txt b/project-words.txt index 9cc5b6b7..c6f4a670 100644 --- a/project-words.txt +++ b/project-words.txt @@ -68,6 +68,7 @@ rowid RUSTDOCFLAGS RUSTFLAGS rustfmt +rustls rustversion serde sgxj diff --git a/src/lib.rs b/src/lib.rs index 44ee238d..4f155d12 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,7 @@ //! ## Prerequisites //! //! In order the run the index you will need a running torrust tracker. In the -//! configuration you need to fill the `index` section with the following: +//! configuration you need to fill the `tracker` section with the following: //! //! ```toml //! [tracker] @@ -70,6 +70,16 @@ //! or you can use the docker to run both the tracker and the index. Refer to the //! [Run with docker](#run-with-docker) section for more information. //! +//! You will also need to install this dependency: +//! +//! ```text +//! sudo apt-get install libssl-dev +//! ``` +//! +//! We needed because we are using native TLS support instead of [rustls](https://github.com/rustls/rustls). +//! +//! More info: . +//! //! If you are using `SQLite3` as database driver, you will need to install the //! following dependency: //!