Skip to content

Commit 9fc0ea1

Browse files
committed
doc: update support matrix
1 parent b9af7c8 commit 9fc0ea1

File tree

13 files changed

+82
-71
lines changed

13 files changed

+82
-71
lines changed

README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,20 @@ Make rust crates binding to Node.js use [napi-rs](https://github.com/napi-rs/nap
88

99
# Support matrix
1010

11-
| | node10 | node12 | node14 | node15 |
12-
| --------------- | ------ | ------ | ------ | ------ |
13-
| Windows x64 |||||
14-
| Windows x32 |||||
15-
| macOS x64 |||||
16-
| macOS arm64 |||||
17-
| Linux x64 gnu |||||
18-
| Linux x64 musl |||||
19-
| Linux arm gnu |||||
20-
| Linux arm64 gnu |||||
21-
| Android arm64 |||||
11+
| | node12 | node14 | node16 |
12+
| ---------------- | ------ | ------ | ------ |
13+
| Windows x64 ||||
14+
| Windows x32 ||||
15+
| Windows arm64 ||||
16+
| macOS x64 ||||
17+
| macOS arm64 ||||
18+
| Linux x64 gnu ||||
19+
| Linux x64 musl ||||
20+
| Linux arm gnu ||||
21+
| Linux arm64 gnu ||||
22+
| Linux arm64 musl ||||
23+
| Android arm64 ||||
24+
| FreeBSD x64 ||||
2225

2326
# Packages
2427

packages/bcrypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ mimalloc = {version = "0.1"}
2626
quickcheck = "1.0"
2727

2828
[build-dependencies]
29-
napi-build = "1.1.0-beta.0"
29+
napi-build = "1.1.0"

packages/bcrypt/README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,20 @@
77

88
## Support matrix
99

10-
| | node10 | node12 | node14 | node15 |
11-
| --------------- | ------ | ------ | ------ | ------ |
12-
| Windows x64 |||||
13-
| Windows x32 |||||
14-
| macOS x64 |||||
15-
| macOS arm64 |||||
16-
| Linux x64 gnu |||||
17-
| Linux x64 musl |||||
18-
| Linux arm gnu |||||
19-
| Linux arm64 gnu |||||
20-
| Android arm64 |||||
10+
| | node12 | node14 | node16 |
11+
| ---------------- | ------ | ------ | ------ |
12+
| Windows x64 ||||
13+
| Windows x32 ||||
14+
| Windows arm64 ||||
15+
| macOS x64 ||||
16+
| macOS arm64 ||||
17+
| Linux x64 gnu ||||
18+
| Linux x64 musl ||||
19+
| Linux arm gnu ||||
20+
| Linux arm64 gnu ||||
21+
| Linux arm64 musl ||||
22+
| Android arm64 ||||
23+
| FreeBSD x64 ||||
2124

2225
## Usage
2326

packages/bcrypt/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ mod verify_task;
2727
not(target_arch = "arm"),
2828
not(target_arch = "aarch64")
2929
))]
30-
#[cfg(all(windows, not(target_arch = "aarch64")))]
3130
#[global_allocator]
32-
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
31+
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
3332

34-
#[cfg(windows)]
33+
#[cfg(all(windows, not(target_arch = "aarch64")))]
3534
#[global_allocator]
3635
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
3736

packages/crc32/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jemallocator = {version = "0.3", features = ["disable_initial_exec_tls"]}
1919
mimalloc = {version = "0.1"}
2020

2121
[build-dependencies]
22-
napi-build = "1.1.0-beta.0"
22+
napi-build = "1.1.0"

packages/crc32/README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,20 @@ js_crc32 for inputs 16931844B, avg 2066B x 22.12 ops/sec ±5.20% (40 runs sample
4242

4343
## Support matrix
4444

45-
| | node10 | node12 | node14 | node15 |
46-
| --------------- | ------ | ------ | ------ | ------ |
47-
| Windows x64 |||||
48-
| Windows x32 |||||
49-
| macOS x64 |||||
50-
| macOS arm64 |||||
51-
| Linux x64 gnu |||||
52-
| Linux x64 musl |||||
53-
| Linux arm gnu |||||
54-
| Linux arm64 gnu |||||
55-
| Android arm64 |||||
45+
| | node12 | node14 | node16 |
46+
| ---------------- | ------ | ------ | ------ |
47+
| Windows x64 ||||
48+
| Windows x32 ||||
49+
| Windows arm64 ||||
50+
| macOS x64 ||||
51+
| macOS arm64 ||||
52+
| Linux x64 gnu ||||
53+
| Linux x64 musl ||||
54+
| Linux arm gnu ||||
55+
| Linux arm64 gnu ||||
56+
| Linux arm64 musl ||||
57+
| Android arm64 ||||
58+
| FreeBSD x64 ||||
5659

5760
## API
5861

packages/crc32/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ use std::convert::TryInto;
1515
not(target_arch = "arm"),
1616
not(target_arch = "aarch64")
1717
))]
18-
#[cfg(all(windows, not(target_arch = "aarch64")))]
1918
#[global_allocator]
20-
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
19+
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
2120

22-
#[cfg(windows)]
21+
#[cfg(all(windows, not(target_arch = "aarch64")))]
2322
#[global_allocator]
2423
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
2524

packages/deno-lint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jemallocator = {version = "0.3", features = ["disable_initial_exec_tls"]}
2424
mimalloc = {version = "0.1"}
2525

2626
[build-dependencies]
27-
napi-build = "1.1.0-beta.0"
27+
napi-build = "1.1.0"

packages/deno-lint/README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,20 @@
77
88
## Support matrix
99

10-
| | node10 | node12 | node14 | node15 |
11-
| --------------- | ------ | ------ | ------ | ------ |
12-
| Windows x64 |||||
13-
| Windows x32 |||||
14-
| macOS x64 |||||
15-
| macOS arm64 |||||
16-
| Linux x64 gnu |||||
17-
| Linux x64 musl |||||
18-
| Linux arm gnu |||||
19-
| Linux arm64 gnu |||||
20-
| Android arm64 |||||
10+
| | node12 | node14 | node16 |
11+
| ---------------- | ------ | ------ | ------ |
12+
| Windows x64 ||||
13+
| Windows x32 ||||
14+
| Windows arm64 ||||
15+
| macOS x64 ||||
16+
| macOS arm64 ||||
17+
| Linux x64 gnu ||||
18+
| Linux x64 musl ||||
19+
| Linux arm gnu ||||
20+
| Linux arm64 gnu ||||
21+
| Linux arm64 musl ||||
22+
| Android arm64 ||||
23+
| FreeBSD x64 ||||
2124

2225
## Performance
2326

packages/deno-lint/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ use termcolor::{BufferWriter, ColorChoice};
3131
not(target_arch = "arm"),
3232
not(target_arch = "aarch64")
3333
))]
34-
#[cfg(all(windows, not(target_arch = "aarch64")))]
3534
#[global_allocator]
36-
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
35+
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
3736

38-
#[cfg(windows)]
37+
#[cfg(all(windows, not(target_arch = "aarch64")))]
3938
#[global_allocator]
4039
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
4140

0 commit comments

Comments
 (0)