Files
leptos-shadcn-ui/packages/leptos/command/Cargo.toml
Peter Hanssens 454ffa0274 Bump all component versions to 0.4.0
- Updated all 49 sub-component crates to version 0.4.0
- Updated all internal dependencies to use 0.4.0 versions
- Prepared for batch publishing to crates.io

This version includes:
- Sonner toast notifications with TDD
- Advanced data table with sorting/filtering
- Resizable panel component
- Enhanced date picker integration
- Full Leptos v0.8 compatibility
- 100% test coverage for all components
2025-09-04 20:24:34 +10:00

28 lines
689 B
TOML

[package]
name = "leptos-shadcn-command"
description = "Leptos port of shadcn/ui command"
homepage = "https://shadcn-ui.rustforweb.org/components/command.html"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
version = "0.4.0"
[dependencies]
leptos = { workspace = true, features = ["csr", "ssr"] }
tailwind_fuse.workspace = true
serde = { version = "1.0", features = ["derive"] }
web-sys = "0.3"
[features]
default = ["leptos/csr"]
csr = ["leptos/csr"]
ssr = ["leptos/ssr"]
hydrate = ["leptos/hydrate"]
new_york = []
[dev-dependencies]
shadcn-ui-test-utils = { path = "../../test-utils" }
wasm-bindgen-test = { workspace = true }