refraction-networking / conjure

Conjure Refraction Networking station code
https://refraction.network
Apache License 2.0
70 stars 21 forks source link

Rust protobuf dependency #243

Closed jmwample closed 1 year ago

jmwample commented 1 year ago

the pattern match for rust Cargo.toml dependencies allows use of protobuf 3.3.0 which has breaking API changes.

3.2 matches >= 3.2.0 up to < 4.0.0 -- however version 3.3.0 has breaking API changes so using this dependency wont work.

instead match 3.2.* which is anything between >=3.2.0 and < 3.3.0