mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Fixed compilation errors in menubar, combobox, and drawer packages - Updated to tailwind-rs-core v0.4.0 and tailwind-rs-wasm v0.4.0 for WASM compatibility - Cleaned up unused variable warnings across packages - Updated release documentation with WASM integration details - Demo working with dynamic color API and Tailwind CSS generation - All 25+ core components ready for crates.io publication Key features: ✅ WASM compatibility (no more tokio/mio dependencies) ✅ Dynamic Tailwind CSS class generation ✅ Type-safe color utilities ✅ Production-ready component library
20 lines
571 B
TOML
20 lines
571 B
TOML
[package]
|
|
name = "tailwind-rs-core-macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Procedural macros for tailwind-rs-core"
|
|
homepage = "https://github.com/cloud-shuttle/leptos-shadcn-ui"
|
|
repository = "https://github.com/cloud-shuttle/leptos-shadcn-ui"
|
|
license = "MIT"
|
|
authors = ["CloudShuttle <info@cloudshuttle.com>"]
|
|
keywords = ["tailwind", "css", "rust", "web", "styling", "macros"]
|
|
categories = ["web-programming", "development-tools"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["full"] }
|