mirror of
https://github.com/fafhrd91/actix-web
synced 2025-09-02 09:36:39 +02:00
Compare commits
4 Commits
http-test-
...
files-v0.3
Author | SHA1 | Date | |
---|---|---|---|
|
11a9fdad95 | ||
|
75a34dc8bc | ||
|
5b60ee8cfd | ||
|
bb89d04080 |
@@ -77,7 +77,7 @@ actix-macros = "0.1.0"
|
|||||||
actix-threadpool = "0.3.1"
|
actix-threadpool = "0.3.1"
|
||||||
actix-tls = "2.0.0-alpha.1"
|
actix-tls = "2.0.0-alpha.1"
|
||||||
|
|
||||||
actix-web-codegen = "0.2.0"
|
actix-web-codegen = "0.2.2"
|
||||||
actix-http = "2.0.0-alpha.4"
|
actix-http = "2.0.0-alpha.4"
|
||||||
awc = { version = "2.0.0-alpha.2", default-features = false }
|
awc = { version = "2.0.0-alpha.2", default-features = false }
|
||||||
|
|
||||||
|
@@ -1,9 +1,13 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [Unreleased] - 2020-xx-xx
|
## [0.3.0-alpha.1] - 2020-05-23
|
||||||
|
|
||||||
|
* Update `actix-web` and `actix-http` dependencies to alpha
|
||||||
|
* Fix some typos in the docs
|
||||||
* Bump minimum supported Rust version to 1.40
|
* Bump minimum supported Rust version to 1.40
|
||||||
* Support sending Content-Length when Content-Range is specified #1384
|
* Support sending Content-Length when Content-Range is specified [#1384]
|
||||||
|
|
||||||
|
[#1384]: https://github.com/actix/actix-web/pull/1384
|
||||||
|
|
||||||
## [0.2.1] - 2019-12-22
|
## [0.2.1] - 2019-12-22
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-files"
|
name = "actix-files"
|
||||||
version = "0.2.1"
|
version = "0.3.0-alpha.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Static files support for actix web."
|
description = "Static files support for actix web."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@@ -1,8 +1,10 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [Unreleased] - 2020-xx-xx
|
## [0.2.2] - 2020-05-23
|
||||||
|
|
||||||
* Bump minimum supported Rust version to 1.40
|
* Add resource middleware on actix-web-codegen [#1467]
|
||||||
|
|
||||||
|
[#1467]: https://github.com/actix/actix-web/pull/1467
|
||||||
|
|
||||||
## [0.2.1] - 2020-02-25
|
## [0.2.1] - 2020-02-25
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-web-codegen"
|
name = "actix-web-codegen"
|
||||||
version = "0.2.1"
|
version = "0.2.2"
|
||||||
description = "Actix web proc macros"
|
description = "Actix web proc macros"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
@@ -12,9 +12,9 @@ workspace = ".."
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
quote = "^1"
|
quote = "1"
|
||||||
syn = { version = "^1", features = ["full", "parsing"] }
|
syn = { version = "1", features = ["full", "parsing"] }
|
||||||
proc-macro2 = "^1"
|
proc-macro2 = "1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-rt = "1.0.0"
|
actix-rt = "1.0.0"
|
||||||
|
Reference in New Issue
Block a user