From 8bef7274e149407cb2fa1b4b93eec3e570da2ce2 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 17 Oct 2022 20:04:07 -0400 Subject: [PATCH] Update corrosion to 0.2.2, pull libphysis 0.1.1 tag --- external/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 8afc659..c2898dd 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -6,7 +6,7 @@ include(FetchContent) FetchContent_Declare( Corrosion GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git - GIT_TAG v0.2.1 + GIT_TAG v0.2.2 ) FetchContent_MakeAvailable(Corrosion) @@ -14,7 +14,7 @@ FetchContent_MakeAvailable(Corrosion) FetchContent_Declare( libphysis GIT_REPOSITORY https://git.sr.ht/~redstrate/libphysis - GIT_TAG main + GIT_TAG 0.1.1 ) FetchContent_MakeAvailable(libphysis)