tisonkun commented on code in PR #47:
URL: https://github.com/apache/datasketches-rust/pull/47#discussion_r2650481327
##########
Cargo.toml:
##########
@@ -32,6 +32,7 @@ rust-version = "1.85.0"
datasketches = { path = "datasketches" }
# Crates.io dependencies
+anyhow = { version = "1.0.100" }
byteorder = { version = "1.5.0" }
clap = { version = "4.5.20", features = ["derive"] }
googletest = { version = "0.14.2" }
Review Comment:
Sure. According to [SemVer
Compatibility](https://doc.rust-lang.org/cargo/reference/semver.html#semver-compatibility)
"1" means ">=1,<2" and "1.0.100" means ">=1.0.100,<2".
Typically, they will be resolved to the latest 1.x version finally. Unless
we know a specific version that includes the feature/bugfix we need, `anyhow =
{ version = "1" }` should be enough.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]