mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
refactor: crates readme.md (#9)
This commit is contained in:
parent
be1eb01083
commit
c7f1ba1d48
8 changed files with 103 additions and 31 deletions
|
@ -4,7 +4,7 @@
|
|||
<p>
|
||||
|
||||
[/badge.svg)](https://travis-ci.org/ntex-rs/ntex)
|
||||
[](https://blog.rust-lang.org/2020/03/12/Rust-1.45.html)
|
||||
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||
|
||||
</p>
|
||||
|
|
|
@ -1,7 +1,23 @@
|
|||
# Cors Middleware for ntex framework
|
||||
<div align="center">
|
||||
|
||||
# Cors Middleware for ntex
|
||||
|
||||
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||
|
||||
</div>
|
||||
|
||||
## Documentation & community resources
|
||||
|
||||
* [User Guide](https://ntex.rs/docs)
|
||||
* [API Documentation](https://docs.rs/ntex-cors/)
|
||||
* Cargo package: [ntex-cors](https://crates.io/crates/ntex-cors)
|
||||
* Minimum supported Rust version: 1.42 or later
|
||||
* Minimum supported Rust version: 1.65 or later
|
||||
|
||||
## Build statuses
|
||||
|
||||
| Platform | Build Status |
|
||||
| ---------------- | ------------ |
|
||||
| Linux | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Linux)") |
|
||||
| macOS | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(OSX)") |
|
||||
| Windows | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Windows)") |
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.2.2] - 2023-04-09
|
||||
|
||||
* Remove hyperx dependencies
|
||||
|
||||
## [0.2.1] - 2019-12-22
|
||||
|
||||
* Use the same format for file URLs regardless of platforms
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-files"
|
||||
version = "0.2.0"
|
||||
version = "0.2.2"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Static files support for ntex web."
|
||||
readme = "README.md"
|
||||
|
@ -34,5 +34,4 @@ language-tags = "0.3.2"
|
|||
httpdate = "1.0.2"
|
||||
|
||||
[dev-dependencies]
|
||||
ntex = { version = "0.6.5", features=["tokio", "openssl", "compress"] }
|
||||
|
||||
ntex = { version = "0.6.5", features = ["tokio", "openssl", "compress"] }
|
||||
|
|
|
@ -1,9 +1,23 @@
|
|||
# Static files support for actix web [](https://travis-ci.org/actix/actix-web) [](https://codecov.io/gh/actix/actix-web) [](https://crates.io/crates/actix-files) [](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
<div align="center">
|
||||
|
||||
# Static files support for ntex
|
||||
|
||||
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||
|
||||
</div>
|
||||
|
||||
## Documentation & community resources
|
||||
|
||||
* [User Guide](https://actix.rs/docs/)
|
||||
* [API Documentation](https://docs.rs/actix-files/)
|
||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||
* Cargo package: [actix-files](https://crates.io/crates/actix-files)
|
||||
* Minimum supported Rust version: 1.33 or later
|
||||
* [User Guide](https://ntex.rs/docs)
|
||||
* [API Documentation](https://docs.rs/ntex-files)
|
||||
* Cargo package: [ntex-files](https://crates.io/crates/ntex-files)
|
||||
* Minimum supported Rust version: 1.65 or later
|
||||
|
||||
## Build statuses
|
||||
|
||||
| Platform | Build Status |
|
||||
| ---------------- | ------------ |
|
||||
| Linux | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Linux)") |
|
||||
| macOS | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(OSX)") |
|
||||
| Windows | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Windows)") |
|
||||
|
|
|
@ -1,11 +1,23 @@
|
|||
# Identity service for actix web framework [](https://travis-ci.org/actix/actix-web) [](https://codecov.io/gh/actix/actix-web) [](https://crates.io/crates/actix-identity) [](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
<div align="center">
|
||||
|
||||
**This crate moved to https://github.com/actix/actix-extras.**
|
||||
# Identity service for ntex
|
||||
|
||||
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||
|
||||
</div>
|
||||
|
||||
## Documentation & community resources
|
||||
|
||||
* [User Guide](https://actix.rs/docs/)
|
||||
* [API Documentation](https://docs.rs/actix-identity/)
|
||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||
* Cargo package: [actix-session](https://crates.io/crates/actix-identity)
|
||||
* Minimum supported Rust version: 1.34 or later
|
||||
* [User Guide](https://ntex.rs/docs)
|
||||
* [API Documentation](https://docs.rs/ntex-identity)
|
||||
* Cargo package: [ntex-identity](https://crates.io/crates/ntex-identity)
|
||||
* Minimum supported Rust version: 1.65 or later
|
||||
|
||||
## Build statuses
|
||||
|
||||
| Platform | Build Status |
|
||||
| ---------------- | ------------ |
|
||||
| Linux | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Linux)") |
|
||||
| macOS | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(OSX)") |
|
||||
| Windows | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Windows)") |
|
||||
|
|
|
@ -1,8 +1,23 @@
|
|||
# Multipart support for actix web framework [](https://travis-ci.org/actix/actix-web) [](https://codecov.io/gh/actix/actix-web) [](https://crates.io/crates/actix-multipart) [](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
<div align="center">
|
||||
|
||||
# Multipart support for ntex
|
||||
|
||||
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||
|
||||
</div>
|
||||
|
||||
## Documentation & community resources
|
||||
|
||||
* [API Documentation](https://docs.rs/actix-multipart/)
|
||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||
* Cargo package: [actix-multipart](https://crates.io/crates/actix-multipart)
|
||||
* Minimum supported Rust version: 1.39 or later
|
||||
* [User Guide](https://ntex.rs/docs)
|
||||
* [API Documentation](https://docs.rs/ntex-multipart)
|
||||
* Cargo package: [ntex-multipart](https://crates.io/crates/ntex-multipart)
|
||||
* Minimum supported Rust version: 1.65 or later
|
||||
|
||||
## Build statuses
|
||||
|
||||
| Platform | Build Status |
|
||||
| ---------------- | ------------ |
|
||||
| Linux | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Linux)") |
|
||||
| macOS | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(OSX)") |
|
||||
| Windows | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Windows)") |
|
||||
|
|
|
@ -1,11 +1,23 @@
|
|||
# Session for actix web framework [](https://travis-ci.org/actix/actix-web) [](https://codecov.io/gh/actix/actix-web) [](https://crates.io/crates/actix-session) [](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
<div align="center">
|
||||
|
||||
**This crate moved to https://github.com/actix/actix-extras.**
|
||||
# Session for ntex
|
||||
|
||||
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||
|
||||
</div>
|
||||
|
||||
## Documentation & community resources
|
||||
|
||||
* [User Guide](https://actix.rs/docs/)
|
||||
* [API Documentation](https://docs.rs/actix-session/)
|
||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||
* Cargo package: [actix-session](https://crates.io/crates/actix-session)
|
||||
* Minimum supported Rust version: 1.34 or later
|
||||
* [User Guide](https://ntex.rs/docs)
|
||||
* [API Documentation](https://docs.rs/ntex-session)
|
||||
* Cargo package: [ntex-session](https://crates.io/crates/ntex-session)
|
||||
* Minimum supported Rust version: 1.65 or later
|
||||
|
||||
## Build statuses
|
||||
|
||||
| Platform | Build Status |
|
||||
| ---------------- | ------------ |
|
||||
| Linux | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Linux)") |
|
||||
| macOS | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(OSX)") |
|
||||
| Windows | [](https://github.com/ntex-rs/ntex-extras/actions?query=workflow%3A"CI+(Windows)") |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue