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.
Replace x-www-form-url encoding with percent encoding in blob/contain…
…er signature generation (#318) * replace form url encoding with percent encoding * fixed example missing a dependency * less verbose code * less verbose code (forgot some :)
- Loading branch information
Francesco Cogno
authored
Sep 11, 2020
1 parent
2b48b8a
commit 5127783
Showing
3 changed files
with
19 additions
and
19 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_blob" | ||
version = "0.45.2" | ||
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]>"] | ||
|
@@ -28,13 +28,14 @@ log = "0.4" | |
serde = "1.0" | ||
serde_derive = "1.0" | ||
serde-xml-rs = "0.4" | ||
url = "2.1" | ||
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" ] | ||
|
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