-
Notifications
You must be signed in to change notification settings - Fork 315
allow wasm32 for azure_identity
#995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
mock_transport = { path = "../../eng/test/mock_transport" } | ||
|
||
[features] | ||
default = ["enable_reqwest", "azure_identity/default"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
azure_identity
is a dev-dependency, so this doesn't work. It fails when publishing.
[dependencies] | ||
async-trait = "0.1" | ||
azure_core = { path = "../core", version = "0.4" } | ||
azure_identity = { path = "../identity", default_features = false } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
azure_identity should be a dev-dependency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we just land the dependency changes first? I'd rather not add all of these feature flags (which are really hard to understand), and just focus on fixing #996.
I'd prefer to merge this and then back out the changes once #996 is fixed. |
* make oauth2 an internal dependency of identity * stub out oauth2_async_http_client * add but headers * fix after merge * oauth2::http * str * move adapter into mod * examples cleanup * remove #[cfg(feature = "enable_reqwest")] from Azure#995 * set headers and body * address feedback Co-authored-by: Cameron Taggart <cameron.taggart@gmail.com>
This makes all of these checks to work:
The storage_blobs & storage_datalake dependency changes were included in yesterday's release.