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
+7 -1
View File
@@ -11,7 +11,7 @@ compile_commands.json
CTestTestfile.cmake
_deps
CMakeUserPresets.json
target
# ---> Ninja
.ninja_deps
.ninja_log
@@ -732,6 +732,7 @@ $RECYCLE.BIN/
# Icon must end with two \r
Icon
# Thumbnails
._*
@@ -751,3 +752,8 @@ Network Trash Folder
Temporary Items
.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!");
}