-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
38 lines (29 loc) · 1.06 KB
/
Cargo.toml
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
[workspace]
workspace.resolver = "2"
members = ["twust", "twust_macro", "tailwind"]
[workspace.package]
name = "twust"
version = "1.1.0"
edition = "2021"
authors = ["Oyelowo Oyedayo"]
email = ["[email protected]"]
readme = "README.md"
documentation = "https://docs.rs/twust"
# documentation = "https://codebreather.com/oyelowo"
repository = "https://github.com/Oyelowo/twust"
description = "Zero-config Static type-checker for Tailwind CSS"
license = "MIT/Apache-2.0"
categories = ["UI", "css", "tailwindcss", "web-programming"]
keywords = ["tailwind", "css", "tailwindcss", "ui", "web"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# exclude = ["examples", "tests"]
[workspace.dependencies]
twust = { path = "twust" }
twust_macro = { version = "1.1.0", features = ["daisyui"] }
# twust_macro = { path = "twust_macro", features = ["daisyui"] }
proc-macro2 = "1.0.69"
quote = "1.0.33"
syn = { version = "2.0.38", features = ["full"] }
nom = "7.1.3"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"