CVE: RUSTSEC-2018-0017: use tempfile instead of tempdir

This commit is contained in:
Matteo Settenvini 2023-07-12 17:19:26 +02:00
parent 161f4f1b1d
commit ad43eb9a13
8 changed files with 447 additions and 174 deletions

View file

@ -56,6 +56,18 @@ Then, e.g. for running on port 8000, you would put the corresponding configurati
## Build and install
If you want more granular control on installation options, use CMake:
```bash
cmake -B build .
cmake --build build
cmake --install build
cd run-folder # folder with Settings.toml
serves3
```
Else you can simply rely on `cargo`:
```bash
cargo install --root /usr/local --path . # for instance
cd run-folder # folder with Settings.toml