This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/origin/master'
- Loading branch information
Showing
6 changed files
with
64 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "azure_sdk_storage_account" | ||
version = "0.41.0" | ||
version = "0.41.1" | ||
description = "Rust wrappers around Microsoft Azure REST APIs - Blob storage account crate" | ||
readme = "README.md" | ||
authors = ["Francesco Cogno <[email protected]>", "Max Gortman <[email protected]>"] | ||
|
@@ -16,7 +16,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
azure_sdk_core = { path = "../azure_sdk_core", version = "0.43.4" } | ||
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.0" } | ||
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.1" } | ||
chrono = "0.4" | ||
http = "0.2" | ||
hyper = "0.13" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "azure_sdk_storage_blob" | ||
version = "0.44.0" | ||
version = "0.44.1" | ||
description = "Rust wrappers around Microsoft Azure REST APIs - Blob storage crate" | ||
readme = "README.md" | ||
authors = ["Francesco Cogno <[email protected]>", "Max Gortman <[email protected]>", "Dong Liu <[email protected]>"] | ||
|
@@ -16,7 +16,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
azure_sdk_core = { path = "../azure_sdk_core", version = "0.43.4" } | ||
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.0" } | ||
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.1" } | ||
md5 = "0.7" | ||
RustyXML = "0.3" | ||
base64 = "0.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "azure_sdk_storage_core" | ||
version = "0.44.0" | ||
version = "0.44.1" | ||
description = "Rust wrappers around Microsoft Azure REST APIs - Core storage crate" | ||
readme = "README.md" | ||
authors = ["Francesco Cogno <[email protected]>", "Max Gortman <[email protected]>", "Dong Liu <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
use azure_sdk_storage_core::prelude::*; | ||
use std::thread; | ||
|
||
fn get_box() -> Box<dyn Client> { | ||
Box::new(client::with_access_key("fake", "fake")) | ||
} | ||
|
||
fn get_box_send() -> Box<dyn Client + Send + Sync> { | ||
Box::new(client::with_access_key("fake", "fake")) | ||
} | ||
|
||
pub fn main() { | ||
let client = get_box(); | ||
println!("client.blob_uri() == {}", client.blob_uri()); | ||
|
||
let client_send = get_box_send(); | ||
|
||
let handler = thread::spawn(move || { | ||
println!("client_send.blob_uri() == {}", client_send.blob_uri()); | ||
}); | ||
handler.join().unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "azure_sdk_storage_table" | ||
version = "0.41.0" | ||
version = "0.41.1" | ||
description = "Rust wrappers around Microsoft Azure REST APIs - Table storage crate" | ||
readme = "README.md" | ||
authors = ["Francesco Cogno <[email protected]>", "gzp-crey", "Max Gortman <[email protected]>", "Dong Liu <[email protected]>"] | ||
|
@@ -16,7 +16,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
azure_sdk_core = { path = "../azure_sdk_core", version = "0.43.4" } | ||
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.0" } | ||
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.1" } | ||
chrono = "0.4" | ||
http = "0.2" | ||
hyper = "0.13" | ||
|