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

Remove ring subsubdependency when using actix-multipart. #895

Merged
merged 1 commit into from
Jun 7, 2019
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
4 changes: 4 additions & 0 deletions actix-multipart/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [0.1.3] - 2019-06-06

* Fix ring dependency from actix-web default features for #741.

## [0.1.2] - 2019-06-02

* Fix boundary parsing #876
Expand Down
4 changes: 2 additions & 2 deletions actix-multipart/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-multipart"
version = "0.1.2"
version = "0.1.3"
authors = ["Nikolay Kim <[email protected]>"]
description = "Multipart support for actix web framework."
readme = "README.md"
Expand All @@ -18,7 +18,7 @@ name = "actix_multipart"
path = "src/lib.rs"

[dependencies]
actix-web = "1.0.0-rc"
actix-web = { version = "1.0.0", default-features = false }
actix-service = "0.4.0"
bytes = "0.4"
derive_more = "0.14"
Expand Down