Files
design/Cargo.toml
T
chuan 14e8087aac feat: add design preview site with search and filtering functionality
- Implemented a new web interface for previewing designs, allowing users to search and filter by category.
- Created `app.js` to handle state management, event binding, and rendering of design records.
- Developed `index.html` as the main structure for the design gallery, including search input and design list.
- Added `styles.css` for styling the design gallery and ensuring a responsive layout.
- Updated Rust backend to support site generation, including new commands for building and serving the site.
- Refactored catalog parsing to support new data structure for design entries.
- Enhanced the sync process to collect site records and generate appropriate URLs for previews.
- Introduced a new serving mechanism for the generated site, allowing local previews of designs.
2026-04-20 23:18:02 +08:00

10 lines
209 B
TOML

[package]
name = "design"
version = "0.1.0"
edition = "2024"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
scraper = "0.24"
tiny_http = "0.12"