diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aed128e..2728a6d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changes +- Broaden `azure_core` and `azure_identity` version requirements to `1` for + maximum compatibility. Builds resolve to azure_core 1.1 (the latest release). - Fix `clippy::useless_borrows_in_formatting` warnings from the updated Rust toolchain by removing redundant references in `format!` arguments (codegen, hand-written source, and regenerated modules). diff --git a/azure_devops_rust_api/Cargo.toml b/azure_devops_rust_api/Cargo.toml index 90e97345..24d52cd4 100644 --- a/azure_devops_rust_api/Cargo.toml +++ b/azure_devops_rust_api/Cargo.toml @@ -21,7 +21,7 @@ rust-version = "1.80.0" doctest = false [dependencies] -azure_core = { version = "1.0", default-features = true } +azure_core = { version = "1", default-features = true } serde = { version = "1", features = ["derive"] } serde_json = "1" bytes = "1" @@ -39,7 +39,7 @@ once_cell = "1" uuid = { version = "1", features = ["serde", "v4", "js"] } [dev-dependencies] -azure_identity = "1.0" +azure_identity = "1" tokio = { version = "1", features = ["full"] } anyhow = "1" tracing-subscriber = "0.3"