-
Actix web
+
Actix Web
- Actix web is a powerful, pragmatic, and extremely fast web framework for Rust
+ Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust
-[](https://crates.io/crates/actix-web)
-[](https://docs.rs/actix-web)
-[](https://blog.rust-lang.org/2020/03/12/Rust-1.42.html)
-
+[](https://crates.io/crates/actix-web)
+[](https://docs.rs/actix-web/4.0.0-beta.2)
+[](https://blog.rust-lang.org/2020/03/12/Rust-1.46.html)
+
+[](https://deps.rs/crate/actix-web/4.0.0-beta.2)
-[](https://travis-ci.org/actix/actix-web)
+[](https://github.com/actix/actix-web/actions)
[](https://codecov.io/gh/actix/actix-web)
-[](https://crates.io/crates/actix-web)
-[](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+
+[](https://discord.gg/NWpN5mmg3x)
@@ -30,9 +31,8 @@
* Static assets
* SSL support using OpenSSL or Rustls
* Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
-* Includes an async [HTTP client](https://actix.rs/actix-web/actix_web/client/index.html)
-* Supports [Actix actor framework](https://github.com/actix/actix)
-* Runs on stable Rust 1.42+
+* Includes an async [HTTP client](https://docs.rs/actix-web/latest/actix_web/client/index.html)
+* Runs on stable Rust 1.46+
## Documentation
@@ -97,13 +97,13 @@ One of the fastest web frameworks available according to the
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
- [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0))
+ [http://www.apache.org/licenses/LICENSE-2.0])
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
- [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))
+ [http://opensource.org/licenses/MIT])
at your option.
## Code of Conduct
-Contribution to the actix-web crate is organized under the terms of the Contributor Covenant, the
-maintainers of Actix web, promises to intervene to uphold that code of conduct.
+Contribution to the actix-web repo is organized under the terms of the Contributor Covenant.
+The Actix team promises to intervene to uphold that code of conduct.
diff --git a/actix-files/CHANGES.md b/actix-files/CHANGES.md
index 75d616ff9..6e2a241ac 100644
--- a/actix-files/CHANGES.md
+++ b/actix-files/CHANGES.md
@@ -1,12 +1,49 @@
# Changes
-## [Unreleased] - 2020-xx-xx
+## Unreleased - 2021-xx-xx
-## [0.3.0-beta.1] - 2020-07-15
+
+## 0.6.0-beta.2 - 2021-02-10
+* Fix If-Modified-Since and If-Unmodified-Since to not compare using sub-second timestamps. [#1887]
+* Replace `v_htmlescape` with `askama_escape`. [#1953]
+
+[#1887]: https://github.com/actix/actix-web/pull/1887
+[#1953]: https://github.com/actix/actix-web/pull/1953
+
+
+## 0.6.0-beta.1 - 2021-01-07
+* `HttpRange::parse` now has its own error type.
+* Update `bytes` to `1.0`. [#1813]
+
+[#1813]: https://github.com/actix/actix-web/pull/1813
+
+
+## 0.5.0 - 2020-12-26
+* Optionally support hidden files/directories. [#1811]
+
+[#1811]: https://github.com/actix/actix-web/pull/1811
+
+
+## 0.4.1 - 2020-11-24
+* Clarify order of parameters in `Files::new` and improve docs.
+
+
+## 0.4.0 - 2020-10-06
+* Add `Files::prefer_utf8` option that adds UTF-8 charset on certain response types. [#1714]
+
+[#1714]: https://github.com/actix/actix-web/pull/1714
+
+
+## 0.3.0 - 2020-09-11
+* No significant changes from 0.3.0-beta.1.
+
+
+## 0.3.0-beta.1 - 2020-07-15
* Update `v_htmlescape` to 0.10
* Update `actix-web` and `actix-http` dependencies to beta.1
-## [0.3.0-alpha.1] - 2020-05-23
+
+## 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
@@ -14,77 +51,73 @@
[#1384]: https://github.com/actix/actix-web/pull/1384
-## [0.2.1] - 2019-12-22
+## 0.2.1 - 2019-12-22
* Use the same format for file URLs regardless of platforms
-## [0.2.0] - 2019-12-20
+## 0.2.0 - 2019-12-20
* Fix BodyEncoding trait import #1220
-## [0.2.0-alpha.1] - 2019-12-07
+## 0.2.0-alpha.1 - 2019-12-07
* Migrate to `std::future`
-## [0.1.7] - 2019-11-06
-* Add an additional `filename*` param in the `Content-Disposition` header of `actix_files::NamedFile` to be more compatible. (#1151)
-
-## [0.1.6] - 2019-10-14
+## 0.1.7 - 2019-11-06
+* Add an additional `filename*` param in the `Content-Disposition` header of
+ `actix_files::NamedFile` to be more compatible. (#1151)
+## 0.1.6 - 2019-10-14
* Add option to redirect to a slash-ended path `Files` #1132
-## [0.1.5] - 2019-10-08
+## 0.1.5 - 2019-10-08
* Bump up `mime_guess` crate version to 2.0.1
-
* Bump up `percent-encoding` crate version to 2.1
-
* Allow user defined request guards for `Files` #1113
-## [0.1.4] - 2019-07-20
+## 0.1.4 - 2019-07-20
* Allow to disable `Content-Disposition` header #686
-## [0.1.3] - 2019-06-28
+## 0.1.3 - 2019-06-28
* Do not set `Content-Length` header, let actix-http set it #930
-## [0.1.2] - 2019-06-13
+## 0.1.2 - 2019-06-13
* Content-Length is 0 for NamedFile HEAD request #914
-
* Fix ring dependency from actix-web default features for #741
-## [0.1.1] - 2019-06-01
+## 0.1.1 - 2019-06-01
* Static files are incorrectly served as both chunked and with length #812
-## [0.1.0] - 2019-05-25
-* NamedFile last-modified check always fails due to nano-seconds
- in file modified date #820
+## 0.1.0 - 2019-05-25
+* NamedFile last-modified check always fails due to nano-seconds in file modified date #820
-## [0.1.0-beta.4] - 2019-05-12
+## 0.1.0-beta.4 - 2019-05-12
* Update actix-web to beta.4
-## [0.1.0-beta.1] - 2019-04-20
+## 0.1.0-beta.1 - 2019-04-20
* Update actix-web to beta.1
-## [0.1.0-alpha.6] - 2019-04-14
+## 0.1.0-alpha.6 - 2019-04-14
* Update actix-web to alpha6
-## [0.1.0-alpha.4] - 2019-04-08
+## 0.1.0-alpha.4 - 2019-04-08
* Update actix-web to alpha4
-## [0.1.0-alpha.2] - 2019-04-02
+## 0.1.0-alpha.2 - 2019-04-02
* Add default handler support
-## [0.1.0-alpha.1] - 2019-03-28
+## 0.1.0-alpha.1 - 2019-03-28
* Initial impl
diff --git a/actix-files/Cargo.toml b/actix-files/Cargo.toml
index 634296c56..08b7b36fc 100644
--- a/actix-files/Cargo.toml
+++ b/actix-files/Cargo.toml
@@ -1,8 +1,8 @@
[package]
name = "actix-files"
-version = "0.3.0"
+version = "0.6.0-beta.2"
authors = ["Nikolay Kim