gitextract_s858hyto/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── build.rs ├── debian/ │ └── postinst └── src/ ├── app.rs ├── file_list.rs ├── image.rs ├── image_list.rs ├── image_operation.rs ├── main.rs ├── resources/ │ ├── cargo-sources.json │ ├── com.github.weclaw1.ImageRoll.desktop │ ├── com.github.weclaw1.ImageRoll.gschema.xml │ ├── com.github.weclaw1.ImageRoll.metainfo.xml │ ├── com.github.weclaw1.ImageRoll.yaml │ ├── image-roll.cmb │ ├── image-roll.ui │ ├── resources.gresource │ └── resources.xml ├── settings.rs ├── test_utils.rs ├── ui/ │ ├── action.rs │ ├── controllers.rs │ ├── event.rs │ └── widgets.rs └── ui.rs