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
2 changes: 1 addition & 1 deletion libdie++/cmake/FindDieLibrary.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ find_package(Qt6 REQUIRED COMPONENTS Core Concurrent Qml)
FetchContent_Declare(
DieLibrary
GIT_REPOSITORY "https://github.com/horsicq/die_library"
GIT_TAG 5191b2d9c452ee78425bb0e142448b5d442b9f6b
GIT_TAG 06e36e4136018c294d72cc9450521a6dbb2bf81e
)

set(DIE_BUILD_AS_STATIC ON CACHE INTERNAL "")
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bitflags! {
/// The `ScanFlags` structure contains constants that can be used to specify
/// the behavior of scanning processes. Each flag can be combined using bitwise
/// operations to enable multiple options at once.
#[derive(Debug)]
#[derive(Debug, Clone, Copy)]
pub struct ScanFlags: u32 {
/// Enables a thorough scanning process that examines all files and directories
/// in detail.
Expand Down
Loading