wasmCard

An Online vCard Generator written in Rust.
## 📚 About A WebAssebmly VCard Generator Supports generating vCards (.vcf), print-ready PDF business cards and QR Codes. ## 🎮 Features * Supported properties as of yet: name, address, telephone, birthday, anniversary * Output and Download as vCard (.vcf) * Output and Download as QR Code * Generates a dummy PDF ## 🗺 Roadmap * Add more properties * Button for adding more of one type of property (Support is already there) * Put generation and download both in download button * Generate PDF * Replace more code with macros to make it even more unreadable 😉 ## 🚲 Usage ### 🛠️ Needed tools * [Standard rust toolchain](https://www.rust-lang.org/tools/install) * [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) * cargo-make: `cargo install cargo-make` ### 📦 Build Debug: ``` cargo make build ``` Release: ``` cargo make build_release ``` ### 🍲 Serve ``` cargo make serve ``` ### 🔍 Linting ``` cargo make clippy ``` ### 📏 Format ``` cargo make fmt ```