Skip to content

Commit 198a205

Browse files
authored
pass reqwest features to azure_core from azure_storage (#509)
1 parent 2f2caff commit 198a205

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sdk/storage/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ edition = "2018"
1414

1515
[dependencies]
1616
async-trait = "0.1"
17-
azure_core = { path = "../core", version = "0.1.0" }
17+
azure_core = { path = "../core", version = "0.1.0", default-features=false }
1818
ring = "0.16"
1919
base64 = "0.13"
2020
chrono = "0.4"
@@ -40,7 +40,7 @@ azure_identity = { path = "../identity" }
4040
reqwest = "0.11"
4141

4242
[features]
43-
default = ["account", "blob", "queue", "table", "data_lake"]
43+
default = ["account", "blob", "queue", "table", "data_lake", "enable_reqwest"]
4444
test_e2e = ["account", "blob", "queue", "table", "data_lake"]
4545
mock_transport_framework = [ "azure_core/mock_transport_framework"]
4646
test_integration = ["account", "blob", "queue", "table", "data_lake"]
@@ -50,6 +50,8 @@ blob = []
5050
queue = []
5151
table = []
5252
data_lake = []
53+
enable_reqwest = ["azure_core/enable_reqwest"]
54+
enable_reqwest_rustls = ["azure_core/enable_reqwest_rustls"]
5355

5456
# This section specifies the required features for the examples.
5557
[[example]]

0 commit comments

Comments
 (0)