Skip to content

Commit 2671d1e

Browse files
fix(deps): update all non-major dependencies (#104)
* fix(deps): update all non-major dependencies * fix: Switch to using DeveloperToolsCredential --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Max Dymond <[email protected]>
1 parent 186f2c2 commit 2671d1e

File tree

4 files changed

+39
-39
lines changed

4 files changed

+39
-39
lines changed

Cargo.lock

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ path = "src/main.rs"
1717

1818
[dependencies]
1919
# Azure SDK for Rust
20-
azure_identity = "0.27.0"
21-
azure_core = "0.27.0"
20+
azure_identity = "0.28.0"
21+
azure_core = "0.28.0"
2222

2323
# Azure Storage is currently held at an older version.
2424
# Include a version of the azure_core crate that is compatible with the

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/azure.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License.
33
use std::sync::Arc;
44

5-
use azure_identity::DefaultAzureCredentialBuilder;
5+
use azure_identity::DeveloperToolsCredential;
66
use azure_storage::StorageCredentials;
77
use azure_storage_blobs::{
88
blob::operations::GetPropertiesResponse,
@@ -63,7 +63,7 @@ pub(crate) struct AzureRegistry {
6363
impl AzureRegistry {
6464
pub fn new() -> Result<Self, Box<dyn std::error::Error>> {
6565
// Get a credential for Azure
66-
let default_credential = DefaultAzureCredentialBuilder::new().build()?;
66+
let default_credential = DeveloperToolsCredential::new(None)?;
6767
let credential = TokenCredentialInterop::new(default_credential);
6868

6969
Ok(AzureRegistry {

0 commit comments

Comments
 (0)