refraction-networking / conjure

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

Rust protobuf dependency #243

Closed jmwample closed 12 months ago

jmwample commented 12 months 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