diff options
author | Alex Auvolat <alex@adnab.me> | 2020-05-01 14:30:50 +0000 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-05-01 14:30:50 +0000 |
commit | 33249717010b1173fc28ba188e5fe6d580fbf393 (patch) | |
tree | eb9253a961584ac164fdaae60ba3b84b8e7ae4ab /Cargo.lock | |
parent | 3686f100b7e46d60758e4a1cc70586444ddb5f7a (diff) | |
download | garage-33249717010b1173fc28ba188e5fe6d580fbf393.tar.gz garage-33249717010b1173fc28ba188e5fe6d580fbf393.zip |
Slightly improved S3 compatibility
- ListBucket does not require any of the parameters (delimiter,
prefix, max-keys, etc)
- URLs are properly percent_decoded
- PutObject and DeleteObject calls now answer correctly
(empty body, version id in the x-amz-version-id: header)
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -374,6 +374,7 @@ dependencies = [ "httpdate 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.13.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |