Closed jmwample closed 1 year ago
the pattern match for rust Cargo.toml dependencies allows use of protobuf 3.3.0 which has breaking API changes.
Cargo.toml
3.3.0
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.
3.2
>= 3.2.0
< 4.0.0
instead match 3.2.* which is anything between >=3.2.0 and < 3.3.0
3.2.*
>=3.2.0
< 3.3.0
the pattern match for rust
Cargo.toml
dependencies allows use of protobuf3.3.0
which has breaking API changes.3.2
matches>= 3.2.0
up to< 4.0.0
-- however version3.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