forked from stoically/syn-rsx
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
104 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/target | ||
/Cargo.lock | ||
/Cargo.lock | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "syn-rsx" | ||
description = "syn-powered parser for JSX-like TokenStreams" | ||
version = "0.9.0" | ||
authors = ["stoically <[email protected]>"] | ||
name = "rstml" | ||
description = "Rust templating parser for JSX-like TokenStreams" | ||
version = "0.10.0" | ||
authors = ["vldm <[email protected]>","stoically <[email protected]>"] | ||
keywords = ["syn", "jsx", "rsx", "html", "macro"] | ||
edition = "2018" | ||
repository = "https://github.com/stoically/syn-rsx" | ||
repository = "https://github.com/rs-tml/rstml" | ||
readme = "README.md" | ||
license = "MIT" | ||
resolver = "2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "html-to-string-macro" | ||
description = "simple html to string macro powered by syn-rsx" | ||
description = "simple html to string macro powered by rstml" | ||
version = "0.2.5" | ||
authors = ["stoically <[email protected]>"] | ||
keywords = ["html-to-string", "html", "macro"] | ||
edition = "2021" | ||
repository = "https://github.com/stoically/syn-rsx/tree/main/examples/html-to-string-macro" | ||
repository = "https://github.com/rs-tml/rstml/tree/main/examples/html-to-string-macro" | ||
readme = "README.md" | ||
license = "MIT" | ||
|
||
|
@@ -16,7 +16,7 @@ proc-macro = true | |
proc-macro2 = "1.0.47" | ||
quote = "1.0.21" | ||
syn = "2.0.15" | ||
syn-rsx = { path = "../../" } | ||
rstml = { path = "../../" } | ||
|
||
[dev-dependencies] | ||
trybuild = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env sh | ||
|
||
GIT_CLIFF__CHANGELOG__FOOTER=$(cat CHANGELOG.old) | ||
OLD_COMMIT="734000aed91c62392e0fa6f445b1fad734ba2a17" | ||
GIT_CLIFF__CHANGELOG__FOOTER=$(cat CHANGELOG.old.md) | ||
OLD_COMMIT="149109f1420df7a11f5a69e4a9fb90bf57ec4f02" | ||
|
||
git cliff -o CHANGELOG.md -- $OLD_COMMIT..HEAD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters