Skip to content

Commit

Permalink
new version and loosen dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburniske committed Mar 30, 2024
1 parent aeb2773 commit f09304c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions deploy.sh

This file was deleted.

6 changes: 3 additions & 3 deletions fuse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tailwind_fuse"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Nico Burniske", "Gaucho Labs"]
description = "Tailwind Merge and Variants"
Expand All @@ -10,8 +10,8 @@ readme = "../README.md"
repository = "https://github.com/gaucho-labs/tailwind-fuse"

[dependencies]
nom = {version = "7.1.3"}
tailwind_fuse_macro = { path = "../variant-macro", version = "0.1.0", optional = true }
nom = {version = "7"}
tailwind_fuse_macro = { path = "../variant-macro", version = "0.1.1", optional = true }

[dev-dependencies]
divan = "0.1.14"
Expand Down
5 changes: 5 additions & 0 deletions publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

cargo publish --manifest-path ./variant-macro/Cargo.toml $@

cargo publish --manifest-path ./fuse/Cargo.toml $@
10 changes: 5 additions & 5 deletions variant-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tailwind_fuse_macro"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Nico Burniske", "Gaucho Labs"]
description = "Macros for tailwind-fuse"
Expand All @@ -13,8 +13,8 @@ repository = "https://github.com/gaucho-labs/tailwind-fuse"
proc-macro = true

[dependencies]
syn = { version = "2.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
darling = "0.20.8"
syn = { version = "2", features = ["full"] }
quote = "1"
proc-macro2 = "1"
darling = "0.20"

0 comments on commit f09304c

Please sign in to comment.