This repository was 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
/
Copy pathCargo.toml
43 lines (38 loc) · 1.66 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "azure_sdk_storage_blob"
version = "0.45.3"
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]>"]
license = "Apache-2.0"
repository = "https://github.com/MindFlavor/AzureSDKForRust"
documentation = "http://mindflavor.github.io/AzureSDKForRust/azure_sdk_for_rust/index.html"
homepage = "https://github.com/MindFlavor/AzureSDKForRust"
keywords = ["sdk", "azure", "rest", "iot", "cloud"]
categories = ["api-bindings"]
edition = "2018"
[dependencies]
azure_sdk_core = { path = "../azure_sdk_core", version = "0.43.6", optional = true }
azure_sdk_storage_core = { path = "../azure_sdk_storage_core", version = "0.44.3" }
md5 = "0.7"
RustyXML = "0.3"
base64 = "0.12"
chrono = "0.4"
http = "0.2"
futures = "0.3"
hyper = "0.13"
log = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde-xml-rs = "0.4"
uuid = { version = "0.8", features = ["v4"] }
percent-encoding = "2.1"
[dev-dependencies]
env_logger = "0.7"
tokio = { version = "0.2", features = ["macros"] }
azure_sdk_auth_aad = { path = "../azure_sdk_auth_aad" }
url = "2.1"
[features]
default = [ "azure_sdk_core" ]
test_e2e = [ "azure_sdk_core" ]
azurite_workaround = [ "azure_sdk_core/azurite_workaround" ]