mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
remove unneeded code, rename packages
This commit is contained in:
parent
deae1d103f
commit
864f23c3be
283 changed files with 597 additions and 54859 deletions
15
ntex-cors/CHANGES.md
Normal file
15
ntex-cors/CHANGES.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Changes
|
||||
|
||||
## [0.2.0] - 2019-12-20
|
||||
|
||||
* Release
|
||||
|
||||
## [0.2.0-alpha.3] - 2019-12-07
|
||||
|
||||
* Migrate to actix-web 2.0.0
|
||||
|
||||
* Bump `derive_more` crate version to 0.99.0
|
||||
|
||||
## [0.1.0] - 2019-06-15
|
||||
|
||||
* Move cors middleware to separate crate
|
22
ntex-cors/Cargo.toml
Normal file
22
ntex-cors/Cargo.toml
Normal file
|
@ -0,0 +1,22 @@
|
|||
[package]
|
||||
name = "ntex-cors"
|
||||
version = "0.2.0"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Cross-origin resource sharing (CORS) for Actix applications."
|
||||
readme = "README.md"
|
||||
keywords = ["web", "framework"]
|
||||
homepage = "https://ntex.rs"
|
||||
repository = "https://github.com/ntex-rs/ntex-extras.git"
|
||||
documentation = "https://docs.rs/ntex-cors/"
|
||||
license = "MIT"
|
||||
edition = "2018"
|
||||
workspace = ".."
|
||||
|
||||
[lib]
|
||||
name = "ntex_cors"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
ntex = "0.1.7"
|
||||
derive_more = "0.99.5"
|
||||
futures = "0.3.4"
|
1
ntex-cors/LICENSE
Symbolic link
1
ntex-cors/LICENSE
Symbolic link
|
@ -0,0 +1 @@
|
|||
../LICENSE
|
11
ntex-cors/README.md
Normal file
11
ntex-cors/README.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Cors Middleware for actix web framework [](https://travis-ci.org/actix/actix-web) [](https://codecov.io/gh/actix/actix-web) [](https://crates.io/crates/actix-cors) [](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
**This crate moved to https://github.com/actix/actix-extras.**
|
||||
|
||||
## Documentation & community resources
|
||||
|
||||
* [User Guide](https://actix.rs/docs/)
|
||||
* [API Documentation](https://docs.rs/actix-cors/)
|
||||
* [Chat on gitter](https://gitter.im/actix/actix)
|
||||
* Cargo package: [actix-cors](https://crates.io/crates/actix-cors)
|
||||
* Minimum supported Rust version: 1.34 or later
|
1204
ntex-cors/src/lib.rs
Normal file
1204
ntex-cors/src/lib.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue