Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ set(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
set(BUILD_SHARED_LIBS OFF)
set(BUILD_TESTS OFF)

include(FetchContent)
FetchContent_Declare(
Corrosion
GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git
GIT_TAG v0.5.2
)

FetchContent_MakeAvailable(Corrosion)
find_package(Corrosion QUIET)
if (NOT Corrosion_FOUND)
include(FetchContent)
FetchContent_Declare(
Corrosion
GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git
GIT_TAG v0.6.1
)

FetchContent_MakeAvailable(Corrosion)
endif()

corrosion_import_crate(MANIFEST_PATH ${CMAKE_CURRENT_SOURCE_DIR}/libphysis/Cargo.toml
NO_DEFAULT_FEATURES
Expand Down
2 changes: 1 addition & 1 deletion external/libkrasis
Submodule libkrasis updated from e38a59 to dfb517
2 changes: 1 addition & 1 deletion external/libphysis
Submodule libphysis updated 4 files
+11 −11 Cargo.lock
+0 −3 Cargo.toml
+74 −0 src/layer.rs
+1 −2 src/lgb.rs
4 changes: 2 additions & 2 deletions zone.xiv.umbra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ modules:
- /app
sources:
- type: archive
url: https://github.com/corrosion-rs/corrosion/archive/refs/tags/v0.5.2.tar.gz
sha256: 6bc02411e29183a896aa60c58db6819ec6cf57c08997481d0b0da9029356b529
url: https://github.com/corrosion-rs/corrosion/archive/refs/tags/v0.6.1.tar.gz
sha256: e9e95b1ee2bad52681f347993fb1a5af5cce458c5ce8a2636c9e476e4babf8e3
- name: umbra
buildsystem: cmake-ninja
config-opts:
Expand Down
Loading