-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (87 loc) · 2.85 KB
/
Cargo.toml
File metadata and controls
99 lines (87 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[workspace]
members = [
"crates/tailwind-rs-core",
"crates/tailwind-rs-macros",
"crates/tailwind-rs-testing",
"crates/tailwind-rs-postcss",
"crates/tailwind-rs-scanner",
"crates/tailwind-rs-leptos",
"crates/tailwind-rs-yew",
"crates/tailwind-rs-dioxus",
"crates/tailwind-rs-cli",
"crates/tailwind-rs-wasm",
"demos/leptos-demo",
"demos/ssr-demo",
]
resolver = "2"
[workspace.package]
version = "0.15.4"
edition = "2021"
authors = ["tailwind-rs contributors"]
license = "MIT"
repository = "https://github.com/cloud-shuttle/tailwind-rs"
homepage = "https://cloud-shuttle.github.io/tailwind-rs/"
documentation = "https://cloud-shuttle.github.io/tailwind-rs/docs/"
keywords = ["tailwind", "css", "rust", "web", "styling"]
categories = ["web-programming", "development-tools"]
[workspace.dependencies]
# Core dependencies
tailwind-rs-core = { path = "crates/tailwind-rs-core", version = "0.15.4" }
tailwind-rs-macros = { path = "crates/tailwind-rs-macros", version = "0.15.4" }
tailwind-rs-testing = { path = "crates/tailwind-rs-testing", version = "0.15.4" }
tailwind-rs-postcss = { path = "crates/tailwind-rs-postcss", version = "0.15.4" }
tailwind-rs-scanner = { path = "crates/tailwind-rs-scanner", version = "0.15.4" }
# Framework integrations
tailwind-rs-leptos = { path = "crates/tailwind-rs-leptos", version = "0.15.4" }
tailwind-rs-yew = { path = "crates/tailwind-rs-yew", version = "0.15.4" }
tailwind-rs-dioxus = { path = "crates/tailwind-rs-dioxus", version = "0.15.4" }
# CLI tool
tailwind-rs-cli = { path = "crates/tailwind-rs-cli", version = "0.15.4" }
# WASM-optimized crate
tailwind-rs-wasm = { path = "crates/tailwind-rs-wasm", version = "0.15.4" }
# External dependencies - Updated to latest available versions (September 2025)
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "serde", "js"] }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
thiserror = "1.0"
clap = { version = "4.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "cors"] }
leptos = "0.8.8"
leptos_axum = "0.8.6"
yew = "0.21.0"
dioxus = "0.3.0"
dioxus-web = "0.3.0"
wasm-bindgen = "0.2"
web-sys = "0.3"
js-sys = "0.3"
console_error_panic_hook = "0.1"
console_log = "0.2"
toml = "0.8"
glob = "0.3"
# Testing dependencies - Updated to latest versions
wasm-bindgen-test = "0.3"
futures = "0.3"
reqwest = { version = "0.12", features = ["json"] }
proptest = "1.4"
# Development dependencies - Updated to latest versions
cargo-watch = "8.0"
cargo-tarpaulin = "0.27"
cargo-nextest = "0.9"
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
[profile.release]
opt-level = 3
debug = false
lto = true
codegen-units = 1
panic = "abort"
[profile.test]
opt-level = 0
debug = true