Skip to content
This repository was archived by the owner on Oct 6, 2020. It is now read-only.

Commit d148261

Browse files
committed
fixed dependencies and updated README
1 parent a275f08 commit d148261

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

Cargo.toml

+18-18
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,27 @@ keywords = ["sdk", "azure", "rest", "iot", "cloud"]
1313
categories = ["api-bindings"]
1414

1515
[dependencies]
16-
ring = "*"
17-
RustyXML = "*"
18-
base64 = "*"
19-
chrono = "*"
20-
env_logger = "*"
16+
ring = "0.12.1"
17+
RustyXML = "0.1.1"
18+
base64 = "0.9.2"
19+
chrono = "0.4.2"
20+
env_logger = "0.5.10"
2121
futures = "0.1.21"
2222
hyper = "0.11.27"
2323
hyper-tls = "0.1.3"
24-
log = "*"
25-
mime = "*"
26-
native-tls = "*"
27-
quick-error = "*"
28-
serde = "*"
29-
serde_derive = "*"
30-
serde_json = "*"
31-
time = "*"
32-
tokio-core = "*"
33-
url = "*"
34-
uuid = "*"
35-
rust-crypto = "*"
36-
failure = "*"
24+
log = "0.4.2"
25+
mime = "0.3.7"
26+
native-tls = "0.1.5"
27+
quick-error = "1.2.2"
28+
serde = "1.0.66"
29+
serde_derive = "1.0.66"
30+
serde_json = "1.0.19"
31+
time = "0.1.40"
32+
tokio-core = "0.1.17"
33+
url = "1.7.0"
34+
uuid = "0.6.5"
35+
rust-crypto = "0.2.36"
36+
failure = "0.1.1"
3737
smallvec = { version = "0.6", features = ["serde"] }
3838

3939
[features]

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
[![Crate](https://img.shields.io/crates/v/azure_sdk_for_rust.svg)](https://crates.io/crates/azure_sdk_for_rust) [![cratedown](https://img.shields.io/crates/d/azure_sdk_for_rust.svg)](https://crates.io/crates/azure_sdk_for_rust) [![cratelastdown](https://img.shields.io/crates/dv/azure_sdk_for_rust.svg)](https://crates.io/crates/azure_sdk_for_rust)
77

8-
[![tag](https://img.shields.io/github/tag/mindflavor/AzureSDKForRust.svg)](https://github.com/MindFlavor/AzureSDKForRust/tree/0.7.1)
9-
[![release](https://img.shields.io/github/release/mindflavor/AzureSDKForRust.svg)](https://github.com/MindFlavor/AzureSDKForRust/tree/0.7.1)
10-
[![commitssince](https://img.shields.io/github/commits-since/mindflavor/AzureSDKForRust/0.7.1.svg)](https://img.shields.io/github/commits-since/mindflavor/AzureSDKForRust/0.7.1.svg)
8+
[![tag](https://img.shields.io/github/tag/mindflavor/AzureSDKForRust.svg)](https://github.com/MindFlavor/AzureSDKForRust/tree/0.7.2)
9+
[![release](https://img.shields.io/github/release/mindflavor/AzureSDKForRust.svg)](https://github.com/MindFlavor/AzureSDKForRust/tree/0.7.2)
10+
[![commitssince](https://img.shields.io/github/commits-since/mindflavor/AzureSDKForRust/0.7.2.svg)](https://img.shields.io/github/commits-since/mindflavor/AzureSDKForRust/0.7.2.svg)
1111

1212
![GitHub contributors](https://img.shields.io/github/contributors/mindflavor/AzureSDKForRust.svg)
1313

@@ -16,6 +16,8 @@ Microsoft Azure expose its technologies via REST API. These APIs are easily cons
1616

1717
This crate relies heavily on the excellent crate called [Hyper](https://github.com/hyperium/hyper). As of this library version [0.4.0](https://github.com/MindFlavor/AzureSDKForRust/releases/tag/0.4.0) all the methods are future-aware.
1818

19+
From the version 0.7.2 I've used the TryFrom and TryTrait options. This means the library is once again nighlty only (until those lints are stabilized).
20+
1921
> **NOTE:** This repository is under heavy development and is likely to break over time. The current releases will probabily contain bugs. As usual open issues if you find any.
2022
2123
## Disclaimer
@@ -212,6 +214,7 @@ If you want to contribute please do! No formality required! :wink:. Please note
212214
| Put blob page | [https://msdn.microsoft.com/en-us/library/azure/dd179451.aspx](https://msdn.microsoft.com/en-us/library/azure/dd179451.aspx) |
213215
| Clear blob page | [https://msdn.microsoft.com/en-us/library/azure/dd179451.aspx](https://msdn.microsoft.com/en-us/library/azure/dd179451.aspx) |
214216
| Put block | [https://msdn.microsoft.com/en-us/library/azure/dd135726.aspx](https://msdn.microsoft.com/en-us/library/azure/dd135726.aspx) |
217+
| Put block list | [https://docs.microsoft.com/en-us/rest/api/storageservices/put-block-list](https://docs.microsoft.com/en-us/rest/api/storageservices/put-block-list) |
215218
| Lease blob | [https://msdn.microsoft.com/library/azure/ee691972.aspx](https://msdn.microsoft.com/library/azure/ee691972.aspx) |
216219

217220
#### Event Hubs

0 commit comments

Comments
 (0)