You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
I am trying to use azure_sdk_auth_aad crate for the sake of ARM support prototyping (#177). However, it seems the published version of this crate is not consistent with the in-repo version.
When I add a dependency on azure_sdk_auth_aad as well as reqwest in Cargo.toml
[dependencies]
azure_sdk_auth_aad = "0.35"
reqwest = { version = "0.10", features = ["json"] }
I am getting dependency conflict
Updating crates.io index
error: failed to select a version for `hyper`.
... required by package `azure_sdk_core v0.35.0`
... which is depended on by `azure_sdk_auth_aad v0.35.0`
... which is depended on by `azure_sdk_arm v0.1.0 (/Volumes/replixio/azure_sdk_arm)`
versions that meet the requirements `^0.13.0-alpha.4` are: 0.13.2, 0.13.1, 0.13.0, 0.13.0-alpha.4
the package `azure_sdk_core` depends on `hyper`, with features: `unstable-stream` but `hyper` does not have these features.
all possible versions conflict with previously selected packages.
previously selected package `hyper v0.13.0`
... which is depended on by `azure_sdk_core v0.35.0`
... which is depended on by `azure_sdk_auth_aad v0.35.0`
... which is depended on by `azure_sdk_arm v0.1.0 (.../azure_sdk_arm)`
failed to select a version for `hyper` which could resolve this conflict
Perhaps you need to publish azure_sdk_auth_aad on crates.io that will depend on azure_sdk_core 0.36 - similar to how it works in the git repository?
The text was updated successfully, but these errors were encountered:
I am trying to use
azure_sdk_auth_aad
crate for the sake of ARM support prototyping (#177). However, it seems the published version of this crate is not consistent with the in-repo version.When I add a dependency on
azure_sdk_auth_aad
as well asreqwest
in Cargo.tomlI am getting dependency conflict
Perhaps you need to publish
azure_sdk_auth_aad
on crates.io that will depend onazure_sdk_core
0.36 - similar to how it works in the git repository?The text was updated successfully, but these errors were encountered: