Two-crate workspace: immo-core for pure financial logic (wasm-compatible, no async/IO deps) and immo-web for HTTP and rendering. Both crates are still cargo-new skeletons; no domain code yet. Pins the toolchain to 1.97 with rustfmt, clippy and the wasm32-unknown-unknown target so the core crate's wasm constraint is checkable locally. Cargo.lock is committed since the workspace ships a binary. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
22 lines
282 B
Text
22 lines
282 B
Text
# Build artifacts
|
|
/target
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Cargo.lock is committed: this workspace produces a binary (immo-web).
|
|
|
|
# Coverage / profiling
|
|
*.profraw
|
|
*.profdata
|
|
/tarpaulin-report.*
|
|
/cobertura.xml
|
|
|
|
# Editor and OS
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# Local environment
|
|
.env
|
|
.env.local
|