KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
nginx-rust
โ 9
Open GitHub โ
Nginx API bindings for Rust.
Download README (.md)
Explore Similar Repositories
prompt-eng-master
:
No description available.
E-Commerce_Service_DataBase
:
designing an online shop using postgreSql and Python
OpenTEA101
:
๐ Data Science Experiment Handbook: ไธไธช่ดๅไบๆทฑๅ ฅๆข็ดขๅๅไบซๅฆไฝ่ฏๅซGitHubๅผๅธธ่ดฆๆท็ๆฐๆฎ็งๅญฆๅฎ้ชๆๅใๆฌไปๅบๅ ๆฌไปๆฐๆฎ่ทๅใ้ขๅค็ใ็นๅพๅทฅ็จๅฐๆจกๅๆๅปบไธ่ฏไผฐ็ๅฎๆดๆต็จใๆฌข่ฟๅไฝๆฐๆฎ็งๅญฆ็ฑๅฅฝ่ ใ็ ็ฉถ่ ๅๅผๅ่ ๅ ฑๅๅไธไธ่ดก็ฎ!
mevsharp
:
A MEV proxy written in C#
advertising-unity
:
Support advertising unity
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
nginx-rust
?
Download (.md)
# Description This repository contains Rust bindings to Nginx, allowing you to create Nginx modules using the Rust language. # Goals - **Safety** - This repository aims to provide safe abstractions on top of Nginx API. In particular, it aims to provide appropriate lifetimes to abstractions to leverage Rust borrow checker. - **Ease of use** - Abstactions are provided to hide Nginx API complexity. # Build ## Prerequisites * Rust: Install with rustup: https://rustup.rs/ * Nginx repository: This project needs the Nginx headers to generate the required Rust bindings to Nginx. At build time the nginx_module crate looks for the nginx folder starting with this module's folder and going upwards up to 4 levels so you can easily have an nginx folder side by side or use this as a submodule for nginx. ## Building a module Please look at the `simple` example for more details on how to build this.