We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be530a5 commit 8b7fe0eCopy full SHA for 8b7fe0e
packages/yew-macro/Cargo.toml
@@ -16,7 +16,7 @@ rust-version = "1.76.0"
16
proc-macro = true
17
18
[dependencies]
19
-proc-macro-error2 = { version = "2", features = ["nightly"] }
+proc-macro-error2 = "2"
20
proc-macro2 = "1"
21
quote = "1"
22
syn = { version = "2", features = ["full", "extra-traits", "visit-mut"] }
@@ -29,5 +29,9 @@ rustversion = "1"
29
trybuild = "1"
30
yew = { path = "../yew" }
31
32
+[features]
33
+default = []
34
+nightly_yew = ["proc-macro-error2/nightly"]
35
+
36
[lints.rust]
37
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(nightly_yew)'] }
0 commit comments