osmosis-labs / osmosis-rust

Rust libraries for osmosis
Apache License 2.0
59 stars 52 forks source link

fix: fix warning about `resolver` #101

Closed kokeshiM0chi closed 8 months ago

kokeshiM0chi commented 9 months ago

This pr fix this warning. "warning: virtual workspace defaulting to resolver = "1" despite one or more workspace members being on edition 2021 which implies resolver = "2""

By specifying resolver = "2", it is now necessary to specify extra-traits in the syn crate of dependencies in packages/osmosis-std.

refs

Available on crate feature extra-traits only. https://docs.rs/syn/latest/syn/enum.Type.html#impl-PartialEq-for-Type

iboss-ptk commented 8 months ago

Thank you!