Skip to content

Commit 3c535ec

Browse files
feat: switch to crates.io release of Azure SDK (#18166)
* feat: switch to crates.io release of Azure SDK * Update Cargo.toml * Remove outdated feature * cargo vdev build licenses --------- Co-authored-by: Doug Smith <[email protected]>
1 parent 6036d5c commit 3c535ec

File tree

3 files changed

+34
-52
lines changed

3 files changed

+34
-52
lines changed

Cargo.lock

+26-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ aws-smithy-http-tower = { git = "https://github.com/vectordotdev/aws-sdk-rust",
185185
aws-smithy-types = { git = "https://github.com/vectordotdev/aws-sdk-rust", rev = "3d6aefb7fcfced5fc2a7e761a87e4ddbda1ee670", default-features = false, optional = true }
186186

187187
# Azure
188-
azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, features = ["enable_reqwest"], optional = true }
189-
azure_identity = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, features = ["enable_reqwest"], optional = true }
190-
azure_storage = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, optional = true }
191-
azure_storage_blobs = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, optional = true }
188+
azure_core = { version = "0.13", default-features = false, features = ["enable_reqwest"], optional = true }
189+
azure_identity = { version = "0.13", default-features = false, features = ["enable_reqwest"], optional = true }
190+
azure_storage = { version = "0.13", default-features = false, optional = true }
191+
azure_storage_blobs = { version = "0.13", default-features = false, optional = true }
192192

193193
# OpenDAL
194194
opendal = {version = "0.38", default-features = false, features = ["native-tls", "services-webhdfs"], optional = true}
@@ -350,10 +350,10 @@ openssl-src = { version = "111", default-features = false, features = ["force-en
350350
[dev-dependencies]
351351
approx = "0.5.1"
352352
assert_cmd = { version = "2.0.12", default-features = false }
353-
azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, features = ["enable_reqwest", "azurite_workaround"] }
354-
azure_identity = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, features = ["enable_reqwest"] }
355-
azure_storage_blobs = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, features = ["azurite_workaround"] }
356-
azure_storage = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "b4544d4920fa3064eb921340054cd9cc130b7664", default-features = false, features = ["azurite_workaround"] }
353+
azure_core = { version = "0.13", default-features = false, features = ["enable_reqwest", "azurite_workaround"] }
354+
azure_identity = { version = "0.13", default-features = false, features = ["enable_reqwest"] }
355+
azure_storage_blobs = { version = "0.13", default-features = false, features = ["azurite_workaround"] }
356+
azure_storage = { version = "0.13", default-features = false }
357357
base64 = "0.21.2"
358358
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
359359
itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] }

LICENSE-3rdparty.csv

-3
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,6 @@ matches,https://github.com/SimonSapin/rust-std-candidates,MIT,Simon Sapin <simon
321321
matchit,https://github.com/ibraheemdev/matchit,MIT,Ibraheem Ahmed <[email protected]>
322322
maxminddb,https://github.com/oschwald/maxminddb-rust,ISC,Gregory J. Oschwald <[email protected]>
323323
md-5,https://github.com/RustCrypto/hashes,MIT OR Apache-2.0,RustCrypto Developers
324-
md5,https://github.com/stainless-steel/md5,Apache-2.0 OR MIT,"Ivan Ukhov <[email protected]>, Kamal Ahmad <[email protected]>, Konstantin Stepanov <[email protected]>, Lukas Kalbertodt <[email protected]>, Nathan Musoke <[email protected]>, Scott Mabin <[email protected]>, Tony Arcieri <[email protected]>, Wim de With <[email protected]>, Yosef Dinerstein <[email protected]>"
325324
memchr,https://github.com/BurntSushi/memchr,Unlicense OR MIT,"Andrew Gallant <[email protected]>, bluss"
326325
memmap2,https://github.com/RazrFalcon/memmap2-rs,MIT OR Apache-2.0,"Dan Burkert <[email protected]>, Yevhenii Reizner <[email protected]>"
327326
memoffset,https://github.com/Gilnaa/memoffset,MIT,Gilad Naaman <[email protected]>
@@ -483,7 +482,6 @@ semver-parser,https://github.com/steveklabnik/semver-parser,MIT OR Apache-2.0,St
483482
serde,https://github.com/serde-rs/serde,MIT OR Apache-2.0,"Erick Tryzelaar <[email protected]>, David Tolnay <[email protected]>"
484483
serde-toml-merge,https://github.com/jdrouet/serde-toml-merge,MIT,Jeremie Drouet <[email protected]>
485484
serde-value,https://github.com/arcnmx/serde-value,MIT,arcnmx
486-
serde-xml-rs,https://github.com/RReverser/serde-xml-rs,MIT,Ingvar Stepanyan <[email protected]>
487485
serde_bytes,https://github.com/serde-rs/bytes,MIT OR Apache-2.0,David Tolnay <[email protected]>
488486
serde_derive,https://github.com/serde-rs/serde,MIT OR Apache-2.0,David Tolnay <[email protected]>
489487
serde_json,https://github.com/serde-rs/json,MIT OR Apache-2.0,"Erick Tryzelaar <[email protected]>, David Tolnay <[email protected]>"
@@ -643,7 +641,6 @@ winnow,https://github.com/winnow-rs/winnow,MIT,The winnow Authors
643641
winreg,https://github.com/gentoo90/winreg-rs,MIT,Igor Shaula <[email protected]>
644642
woothee,https://github.com/woothee/woothee-rust,Apache-2.0,hhatto <[email protected]>
645643
wyz,https://github.com/myrrlyn/wyz,MIT,myrrlyn <[email protected]>
646-
xml-rs,https://github.com/kornelski/xml-rs,MIT,Vladimir Matveev <[email protected]>
647644
xmlparser,https://github.com/RazrFalcon/xmlparser,MIT OR Apache-2.0,Evgeniy Reizner <[email protected]>
648645
yaml-rust,https://github.com/chyh1990/yaml-rust,MIT OR Apache-2.0,Yuheng Chen <[email protected]>
649646
yansi,https://github.com/SergioBenitez/yansi,MIT OR Apache-2.0,Sergio Benitez <[email protected]>

0 commit comments

Comments
 (0)