Skip to content

Commit b70fa5c

Browse files
author
LongYinan
committed
docs: update repo url [skip ci]
1 parent 360f55d commit b70fa5c

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Make rust crates binding to NodeJS use [napi-rs](https://github.com/Brooooooklyn
1717

1818
# Packages
1919

20-
| Package | Status | Description |
21-
| -------------------------------------- | ------------------------------------------------------------------- | ---------------------------------------------------------- |
22-
| [`@node-rs/crc32`](./packages/crc32) | ![](https://github.com/Brooooooklyn/node-rs/workflows/CI/badge.svg) | Fastest `CRC32` implementation using `SIMD` |
23-
| [`@node-rs/jieba`](./packages/jieba) | ![](https://github.com/Brooooooklyn/node-rs/workflows/CI/badge.svg) | [`jieba-rs`](https://github.com/messense/jieba-rs) binding |
24-
| [`@node-rs/bcrypt`](./packages/bcrypt) | ![](https://github.com/Brooooooklyn/node-rs/workflows/CI/badge.svg) | Fastest bcrypt implementation |
20+
| Package | Status | Description |
21+
| -------------------------------------- | -------------------------------------------------------------- | ---------------------------------------------------------- |
22+
| [`@node-rs/crc32`](./packages/crc32) | ![](https://github.com/napi-rs/node-rs/workflows/CI/badge.svg) | Fastest `CRC32` implementation using `SIMD` |
23+
| [`@node-rs/jieba`](./packages/jieba) | ![](https://github.com/napi-rs/node-rs/workflows/CI/badge.svg) | [`jieba-rs`](https://github.com/messense/jieba-rs) binding |
24+
| [`@node-rs/bcrypt`](./packages/bcrypt) | ![](https://github.com/napi-rs/node-rs/workflows/CI/badge.svg) | Fastest bcrypt implementation |

packages/bcrypt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@node-rs/bcrypt`
22

3-
![](https://github.com/Brooooooklyn/node-rs/workflows/CI/badge.svg)
3+
![](https://github.com/napi-rs/node-rs/workflows/CI/badge.svg)
44

55
🚀 Fastest bcrypt in NodeJS
66

packages/bcrypt/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Rust bcrypt binding",
55
"keywords": ["bcrypt", "auth", "password", "authentication", "encryption", "crypto", "N-API", "napi-rs", "node-rs"],
66
"author": "LongYinan <[email protected]>",
7-
"homepage": "https://github.com/Brooooooklyn/node-rs",
7+
"homepage": "https://github.com/napi-rs/node-rs",
88
"license": "MIT",
99
"main": "index.js",
1010
"typings": "index.d.ts",
@@ -19,15 +19,15 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "git+https://github.com/Brooooooklyn/node-rs.git"
22+
"url": "git+https://github.com/napi-rs/node-rs.git"
2323
},
2424
"scripts": {
2525
"bench": "cross-env NODE_ENV=production node benchmark/bcrypt.js",
2626
"build": "napi --release ./bcrypt",
2727
"build:debug": "napi ./bcrypt.debug"
2828
},
2929
"bugs": {
30-
"url": "https://github.com/Brooooooklyn/node-rs/issues"
30+
"url": "https://github.com/napi-rs/node-rs/issues"
3131
},
3232
"dependencies": {
3333
"@node-rs/helper": "^0.2.0"

packages/crc32/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@node-rs/crc32`
22

3-
![](https://github.com/Brooooooklyn/node-rs/workflows/CI/badge.svg)
3+
![](https://github.com/napi-rs/node-rs/workflows/CI/badge.svg)
44

55
Fastest `crc32` implement in `NodeJS`
66

packages/crc32/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "SIMD crc32",
55
"keywords": ["SIMD", "NAPI", "napi-rs", "node-rs", "crc32", "crc32c"],
66
"author": "LongYinan <[email protected]>",
7-
"homepage": "https://github.com/Brooooooklyn/node-rs",
7+
"homepage": "https://github.com/napi-rs/node-rs",
88
"license": "MIT",
99
"main": "index.js",
1010
"typings": "index.d.ts",
@@ -19,15 +19,15 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "git+https://github.com/Brooooooklyn/node-rs.git"
22+
"url": "git+https://github.com/napi-rs/node-rs.git"
2323
},
2424
"scripts": {
2525
"bench": "cross-env NODE_ENV=production node benchmark/crc32.js",
2626
"build": "napi --release ./crc32",
2727
"build:debug": "napi ./index"
2828
},
2929
"bugs": {
30-
"url": "https://github.com/Brooooooklyn/node-rs/issues"
30+
"url": "https://github.com/napi-rs/node-rs/issues"
3131
},
3232
"dependencies": {
3333
"@node-rs/helper": "^0.2.0"

packages/helper/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Helper library for node-rs",
55
"keywords": ["N-API", "napi", "Rust", "Performance"],
66
"author": "LongYinan <[email protected]>",
7-
"homepage": "https://github.com/brooooooklyn/node-rs",
7+
"homepage": "https://github.com/napi-rs/node-rs",
88
"license": "MIT",
99
"main": "lib/index.js",
1010
"typings": "lib/index.d.ts",
@@ -15,10 +15,10 @@
1515
"files": ["lib", "LICENSE"],
1616
"repository": {
1717
"type": "git",
18-
"url": "git+https://github.com/Brooooooklyn/node-rs.git"
18+
"url": "git+https://github.com/napi-rs/node-rs.git"
1919
},
2020
"bugs": {
21-
"url": "https://github.com/Brooooooklyn/node-rs/issues"
21+
"url": "https://github.com/napi-rs/node-rs/issues"
2222
},
2323
"dependencies": {
2424
"tslib": "^2.0.0"

packages/jieba/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@node-rs/jieba`
22

3-
![](https://github.com/Brooooooklyn/node-rs/workflows/CI/badge.svg)
3+
![](https://github.com/napi-rs/node-rs/workflows/CI/badge.svg)
44

55
[jieba-rs](https://github.com/messense/jieba-rs) binding to NodeJS
66

packages/jieba/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Fastest Chinese word segmentation in NodeJS",
55
"keywords": ["Jieba", "Rust", "node-rs", "napi", "napi-rs", "N-API"],
66
"author": "LongYinan <[email protected]>",
7-
"homepage": "https://github.com/Brooooooklyn/node-rs",
7+
"homepage": "https://github.com/napi-rs/node-rs",
88
"license": "MIT",
99
"main": "index.js",
1010
"typings": "index.d.ts",
@@ -19,15 +19,15 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "git+https://github.com/Brooooooklyn/node-rs.git"
22+
"url": "git+https://github.com/napi-rs/node-rs.git"
2323
},
2424
"scripts": {
2525
"bench": "cross-env NODE_ENV=production node benchmark/jieba.js",
2626
"build": "napi --release ./jieba",
2727
"build:debug": "napi ./jieba"
2828
},
2929
"bugs": {
30-
"url": "https://github.com/Brooooooklyn/node-rs/issues"
30+
"url": "https://github.com/napi-rs/node-rs/issues"
3131
},
3232
"dependencies": {
3333
"@node-rs/helper": "^0.2.0"

0 commit comments

Comments
 (0)