feat: добавление файлов конфигурации Zig и обновление .gitignore
Some checks failed
Test / cargo test (push) Failing after 47s

This commit is contained in:
2026-02-05 01:40:47 +04:00
parent 40e7d88fd0
commit 8f57a8f0f9
3 changed files with 84 additions and 0 deletions

72
.gitignore vendored
View File

@@ -0,0 +1,72 @@
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file
[Dd]esktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
# Windows shortcuts
*.lnk
# Zig programming language
zig-cache/
zig-out/
build/
build-*/
docgen_tmp/

5
build.zig Normal file
View File

@@ -0,0 +1,5 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
_ = b; // stub
}

7
build.zig.zon Normal file
View File

@@ -0,0 +1,7 @@
.{
.name = .fparkan,
.version = "0.0.1",
.minimum_zig_version = "0.15.2",
.paths = .{""},
.fingerprint = 0x8922aff25cf1dd39,
}