Skip to content

Commit 467a7ff

Browse files
committed
chore: update repository links to nginx/ngx-rust
1 parent 18fe0e1 commit 467a7ff

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ members = [
77
[workspace.package]
88
edition = "2021"
99
license = "Apache-2.0"
10-
homepage = "https://github.com/nginxinc/ngx-rust"
11-
repository = "https://github.com/nginxinc/ngx-rust"
10+
homepage = "https://github.com/nginx/ngx-rust"
11+
repository = "https://github.com/nginx/ngx-rust"
1212
rust-version = "1.79.0"
1313

1414
[package]

GNUmakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DOCKER_BUILD_FLAGS ?= --load
1616
COMMITSAR_DOCKER := $(DOCKER) run --tty --rm --workdir /src -v "$(CURDIR):/src" aevea/commitsar
1717
COMMITSAR ?= $(shell command -v commitsar 2> /dev/null)
1818
PROJECT_NAME ?= ngx-rust
19-
GITHUB_REPOSITORY ?= nginxinc/$(PROJECT_NAME)
19+
GITHUB_REPOSITORY ?= nginx/$(PROJECT_NAME)
2020
SRC_REPO := https://github.com/$(GITHUB_REPOSITORY)
2121

2222
RELEASE_BUILD_FLAGS ?= --quiet --release

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Rust](https://github.com/nginxinc/ngx-rust/actions/workflows/ci.yaml/badge.svg)](https://github.com/nginxinc/ngx-rust/actions/workflows/ci.yaml)
1+
[![Rust](https://github.com/nginx/ngx-rust/actions/workflows/ci.yaml/badge.svg)](https://github.com/nginx/ngx-rust/actions/workflows/ci.yaml)
22
[![crates.io](https://img.shields.io/crates/v/ngx.svg)](https://crates.io/crates/ngx)
33
[![Project Status: Concept – Minimal or no implementation has been done yet, or the repository is only intended to be a limited example, demo, or proof-of-concept.](https://www.repostatus.org/badges/latest/concept.svg)](https://www.repostatus.org/#concept)
4-
[![Community Support](https://badgen.net/badge/support/community/cyan?icon=awesome)](https://github.com/nginxinc/ngx-rust/discussions)
4+
[![Community Support](https://badgen.net/badge/support/community/cyan?icon=awesome)](https://github.com/nginx/ngx-rust/discussions)
55

66

77
## Project status

examples/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The following embedded variables are provided:
9999

100100
1. Clone the git repository.
101101
```
102-
git clone [email protected]:nginxinc/ngx-rust.git
102+
git clone [email protected]:nginx/ngx-rust.git
103103
```
104104

105105
2. Compile the module from the cloned repo.
@@ -197,7 +197,7 @@ http {
197197

198198
1. Clone the git repository.
199199
```
200-
git clone [email protected]:nginxinc/ngx-rust.git
200+
git clone [email protected]:nginx/ngx-rust.git
201201
```
202202

203203
2. Compile the module from the cloned repo.

examples/async.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ unsafe impl Send for EventData {}
153153
unsafe impl Sync for EventData {}
154154

155155
// same as ngx_post_event
156-
// source: https://github.com/nginxinc/ngx-rust/pull/31/files#diff-132330bb775bed17fb9990ec2b56e6c52e6a9e56d62f2114fade95e4decdba08R80-R90
156+
// source: https://github.com/nginx/ngx-rust/pull/31/files#diff-132330bb775bed17fb9990ec2b56e6c52e6a9e56d62f2114fade95e4decdba08R80-R90
157157
unsafe fn post_event(event: *mut ngx_event_t, queue: *mut ngx_queue_s) {
158158
let event = &mut (*event);
159159
if event.posted() == 0 {

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! * `NGX_VERSION` (default 1.26.1) - NGINX OSS version
1414
//! * `NGX_DEBUG` (default to false) - if set to true, then will compile NGINX `--with-debug` option
1515
//!
16-
//! For example, this is how you would compile the [examples](https://github.com/nginxinc/ngx-rust/tree/master/examples) using a specific version of NGINX and enabling
16+
//! For example, this is how you would compile the [examples](https://github.com/nginx/ngx-rust/tree/master/examples) using a specific version of NGINX and enabling
1717
//! debugging: `NGX_DEBUG=true NGX_VERSION=1.23.0 cargo build --package=examples --examples --release`
1818
//!
1919
//! To build Linux-only modules, use the "linux" feature: `cargo build --package=examples --examples --features=linux --release`

0 commit comments

Comments
 (0)