forked from stoically/syn-rsx
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor workspace move rstml to separate folder.
Use workspace version of dependencies whenever is possible.
- Loading branch information
Showing
25 changed files
with
146 additions
and
57 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
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[package] | ||
name = "rstml" | ||
description.workspace = true | ||
version = "0.12.0" | ||
authors.workspace = true | ||
keywords.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
readme.workspace = true | ||
license.workspace = true | ||
include.workspace = true | ||
[lib] | ||
bench = false | ||
|
||
[dependencies] | ||
proc-macro2.workspace = true | ||
quote.workspace = true | ||
syn.workspace = true | ||
thiserror.workspace = true | ||
syn_derive.workspace = true | ||
proc-macro2-diagnostics.workspace = true | ||
derive-where.workspace = true | ||
|
||
[dev-dependencies] | ||
proc-macro2 = { workspace = true, features = ["span-locations"] } | ||
criterion.workspace = true | ||
eyre.workspace = true | ||
|
||
[[bench]] | ||
name = "bench" | ||
harness = false | ||
path = "benches/bench.rs" | ||
|
||
|
||
[features] | ||
default = ["colors"] | ||
# Hack that parse input two times, using `proc-macro2::fallback` to recover spaces, and persist original spans. | ||
# It has no penalty in nightly, but in stable it parses input two times. | ||
# In order to use this feature, one should also set `ParserConfig::macro_call_pattern`. | ||
rawtext-stable-hack = ["rawtext-stable-hack-module"] | ||
# Export inters of rawtext_stable_hack. It is usefull if you need support of `UnquotedText` on stable but your macro is called from other one. | ||
rawtext-stable-hack-module = [] | ||
colors = ["proc-macro2-diagnostics/colors"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.