feat: Update to latest Azure sdk to get delimiter support
Needed these PRs: - https://github.com/Azure/azure-sdk-for-rust/pull/176 - https://github.com/Azure/azure-sdk-for-rust/pull/179 Also needed to enable the queue feature to get the azure_storage crate compiling; at the moment, the code is still being reorganized and the features aren't independent yet: https://github.com/Azure/azure-sdk-for-rust/issues/177pull/24376/head
parent
484adcc257
commit
57942b51b7
|
@ -237,7 +237,7 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "azure_core"
|
name = "azure_core"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/Azure/azure-sdk-for-rust.git?rev=5ecad7216e1f04c5ff41e7de4667f006664c8cca#5ecad7216e1f04c5ff41e7de4667f006664c8cca"
|
source = "git+https://github.com/Azure/azure-sdk-for-rust.git?rev=14ff9326bb1ba07f98733a548988eccd4532b945#14ff9326bb1ba07f98733a548988eccd4532b945"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"RustyXML",
|
"RustyXML",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
@ -266,7 +266,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "azure_storage"
|
name = "azure_storage"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/Azure/azure-sdk-for-rust.git?rev=5ecad7216e1f04c5ff41e7de4667f006664c8cca#5ecad7216e1f04c5ff41e7de4667f006664c8cca"
|
source = "git+https://github.com/Azure/azure-sdk-for-rust.git?rev=14ff9326bb1ba07f98733a548988eccd4532b945#14ff9326bb1ba07f98733a548988eccd4532b945"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"RustyXML",
|
"RustyXML",
|
||||||
"azure_core",
|
"azure_core",
|
||||||
|
@ -289,6 +289,7 @@ dependencies = [
|
||||||
"serde_derive",
|
"serde_derive",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"smallvec",
|
"smallvec",
|
||||||
|
"thiserror",
|
||||||
"time 0.2.25",
|
"time 0.2.25",
|
||||||
"url",
|
"url",
|
||||||
"uuid",
|
"uuid",
|
||||||
|
|
|
@ -7,9 +7,9 @@ edition = "2018"
|
||||||
[dependencies] # In alphabetical order
|
[dependencies] # In alphabetical order
|
||||||
async-trait = "0.1.42"
|
async-trait = "0.1.42"
|
||||||
# Microsoft Azure Blob storage integration
|
# Microsoft Azure Blob storage integration
|
||||||
# In order to support tokio 1.0 needed to pull in unreleased azure sdk
|
# In order to support tokio 1.0 and delimiters, needed to pull in unreleased azure sdk
|
||||||
azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "5ecad7216e1f04c5ff41e7de4667f006664c8cca" }
|
azure_core = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "14ff9326bb1ba07f98733a548988eccd4532b945" }
|
||||||
azure_storage = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "5ecad7216e1f04c5ff41e7de4667f006664c8cca", default-features = false, features = ["table", "blob"] }
|
azure_storage = { git = "https://github.com/Azure/azure-sdk-for-rust.git", rev = "14ff9326bb1ba07f98733a548988eccd4532b945", default-features = false, features = ["table", "blob", "queue"] }
|
||||||
bytes = "1.0"
|
bytes = "1.0"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
# Google Cloud Storage integration
|
# Google Cloud Storage integration
|
||||||
|
|
Loading…
Reference in New Issue