project-chip / rs-matter

Rust implementation of the Matter protocol. Status: Experimental
Apache License 2.0
323 stars 45 forks source link

Update `proc-macro-crate` to `3.1.0` #150

Closed Luro02 closed 6 months ago

Luro02 commented 6 months ago

The old version caused a conflict with another crate that prevented me from compiling the code.

To prevent future conflicts, it would make sense to only define the major version (minor and patch updates should not break code):

[dependencies]
-syn = { version = "2.0.48", features = ["extra-traits", "parsing"] }
+syn = { version = "2", features = ["extra-traits", "parsing"] }
quote = "1"
proc-macro2 = "1"
-proc-macro-crate = "3.1.0"
+proc-macro-crate = "3"
CLAassistant commented 6 months ago

CLA assistant check
All committers have signed the CLA.