Dandandan edited a comment on pull request #319: URL: https://github.com/apache/arrow-rs/pull/319#issuecomment-843541198
These versions should already be taken care of as they are SemVer compatible to the versions in `Cargo.toml` according to the SemVer rules of cargo (`= `means semver compliant in crates). I also checked it by running cargo update` and looking into the Cargo.lock file (which is 0.3.5 and 1.5.4). See here: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-cratesio Also you can use the `cargo upgrades` to see which dependencies are outdated (https://crates.io/crates/cargo-upgrades): ``` arrow: /arrow-rs/arrow/Cargo.toml flatbuffers =0.8.4 matches 0.8.4; latest is 0.9.0 rand >=0.7.0, <0.8.0 matches 0.7.3; latest is 0.8.3 parquet: /arrow-rs/parquet/Cargo.toml parquet-format >=2.6.1, <2.7.0 matches 2.6.1; latest is 4.0.0 arrow-flight: /arrow-rs/arrow-flight/Cargo.toml proc-macro2 =1.0.24 matches 1.0.24; latest is 1.0.26 ``` IMO it might be slightly easier to read if we would use `dependency = "1"` or explicitly use carets everywhere. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
