This commit is contained in:
ArchZer0
2026-08-16 20:54:10 +08:00
parent 7f3155a717
commit 70b0303b19
4 changed files with 24 additions and 2 deletions
+8 -2
View File
@@ -11,7 +11,7 @@ compile_commands.json
CTestTestfile.cmake CTestTestfile.cmake
_deps _deps
CMakeUserPresets.json CMakeUserPresets.json
target
# ---> Ninja # ---> Ninja
.ninja_deps .ninja_deps
.ninja_log .ninja_log
@@ -730,7 +730,8 @@ $RECYCLE.BIN/
.LSOverride .LSOverride
# Icon must end with two \r # Icon must end with two \r
Icon Icon
# Thumbnails # Thumbnails
._* ._*
@@ -751,3 +752,8 @@ Network Trash Folder
Temporary Items Temporary Items
.apdisk .apdisk
# Added by cargo
/target
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "BDJpeg"
version = "0.1.0"
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "BDJpeg"
version = "0.1.0"
edition = "2024"
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}