should-i-rent/Cargo.toml
Marcel Enguehard e5400c8992 Set up cargo workspace backbone
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>
2026-07-29 20:30:55 +02:00

7 lines
137 B
TOML

[workspace]
members = ["crates/immo-core", "crates/immo-web"]
resolver = "3"
[workspace.package]
edition = "2024"
rust-version = "1.97"