BlakeOrth commented on issue #19191:
URL: https://github.com/apache/datafusion/issues/19191#issuecomment-3639356094

   While I can't speak to whether or not the maintainers here would be 
interested in pursuing this, if you don't want to manage the version of your 
`object_store` dependency manually you can specify the dependency with `version 
= "*"` and Cargo will choose a version for you:
   
   ```toml
   [dependencies]
   datafusion = "50.3.0"
   object_store = { version = "*", features = ["aws", "gcp"] }
   ```
   
   With the above configuration, you can see that Cargo chooses `object_store 
v0.12.4`
   ```console
   $ cargo tree -p object_store | head -1
   object_store v0.12.4
   ```


-- 
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]

Reply via email to