mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
framework for composable networking services
* feat(ntex-glommio): remove unused mut * test(ntex-io): check Debug implementation for FilterServiceFactory * chore: format code * feat(ntex-util): check Debug and poll_ready for KeepAlive * test(ntex-util): wait a bit until the poll is ready * test(ntex-bytes): assert error for implementation try_from for BytesVec * feat(ntex-tokio): remove unused mut * feat(ntex-tls): use add_trust_anchors instead of add_server_trust_anchors * chore: format code * feat(ntex-util): check readiness after sleeping but before expiring * feat(ntex-util): remove unnecessary assertion |
||
---|---|---|
.github/workflows | ||
ntex | ||
ntex-async-std | ||
ntex-bytes | ||
ntex-codec | ||
ntex-connect | ||
ntex-glommio | ||
ntex-http | ||
ntex-io | ||
ntex-macros | ||
ntex-router | ||
ntex-rt | ||
ntex-service | ||
ntex-tls | ||
ntex-tokio | ||
ntex-util | ||
.gitignore | ||
Cargo.toml | ||
codecov.yml | ||
LICENSE | ||
README.md | ||
rustfmt.toml |
Build statuses
Platform | Build Status |
---|---|
Linux | |
macOS | |
Windows |
Usage
Starting ntex v0.5 async runtime must be selected as a feature. Available options are glommio
,
tokio
or async-std
.
[dependencies]
ntex = { version = "0.7", features = ["tokio"] }
Documentation & community resources
- Documentation
- Docs.rs
- Minimum supported Rust version: 1.65 or later
License
This project is licensed under
- MIT license (LICENSE or http://opensource.org/licenses/MIT)