- Introduced `build.rs` for Tauri build process initialization. - Added `Cargo.toml` with dependencies for Tauri plugins, serialization, cryptography, and database handling. - Generated `Cargo.lock` to lock package versions for consistency.
76 lines
618 B
Plaintext
76 lines
618 B
Plaintext
# Dependencies
|
|
node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
/coverage
|
|
|
|
# Production
|
|
/dist
|
|
/build
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Local env files
|
|
.env*.local
|
|
.env
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Next.js
|
|
.next/
|
|
/out/
|
|
next-env.d.ts
|
|
|
|
# Electron build output
|
|
/release/
|
|
|
|
# Tauri build output
|
|
src-tauri/target/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets & certificates
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.cer
|
|
*.crt
|
|
*.p8
|
|
*.mobileprovision
|
|
*.provisionprofile
|
|
*.keystore
|
|
*.jks
|
|
*.sig
|
|
*.asc
|
|
*.gpg
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Misc
|
|
*.blockmap
|