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

22
CMakeLists.txt Normal file
View file

@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: © Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
# SPDX-License-Identifier: EUPL-1.2
cmake_minimum_required(VERSION 3.25)
project(serves3 VERSION 1.0.0 LANGUAGES NONE)
include(FetchContent)
FetchContent_Declare(
Corrosion
GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git
GIT_TAG v0.4.1
)
FetchContent_MakeAvailable(Corrosion)
corrosion_import_crate(
MANIFEST_PATH Cargo.toml
IMPORTED_CRATES imported_crates
LOCKED)
message(STATUS "Imported crates: ${imported_crates}")
install(IMPORTED_RUNTIME_ARTIFACTS serves3)