Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base64 to 0.13 #43

Merged
merged 2 commits into from
Jan 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
### Changed
- Updated `bytes` to `0.13`, aligning with the version used by `rustls`

## [0.9.0] - 2021-01-09
### Changed
- Updated bytes to 1.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ default = ["v1"]
# GCS JSON API v1 - Currently the only version of the API
v1 = []
# Enable this feature if you want to create signed URL's without
# needing to implement the signing and digest
# needing to implement the signing and digest yourself
signing = ["ring"]
# Enable AsyncRead trait for multipart upload.
async-multipart = ["futures-util", "pin-utils"]
Expand All @@ -32,7 +32,7 @@ async-multipart = ["futures-util", "pin-utils"]
doctest = false

[dependencies]
base64 = "0.12" # Follows version used by rustls
base64 = "0.13" # Follows version used by rustls
bytes = "1.0" # Follows version used by http
chrono = { version = "0.4", features = ["serde"] }
futures-util = { version = "0.3", optional = true, features = ["io"] }
Expand Down
3 changes: 0 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ deny = [
{ name = "openssl-sys" },
]
skip = [
# rustls uses old versions
{ name = "base64", version = "=0.12.3" },

# most crates still use the pre-1.0 version
{ name = "cfg-if", version = "=0.1.10" },
]
Expand Down