You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/workflows/stale.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ jobs:
7
7
stale:
8
8
runs-on: ubuntu-latest
9
9
steps:
10
-
- uses: actions/stale@v7
10
+
- uses: actions/stale@v8
11
11
with:
12
12
stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
13
13
stale-pr-message: 'This PR is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
Copy file name to clipboardexpand all lines: docs/20-global-settings.md
+12
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,18 @@ Disable the tag if you feel like it's not worth the hassle.
29
29
30
30
And when you *do* enable [github.com/goccy/go-json](https://github.com/goccy/go-json) and you encounter some mysterious error, I also trust that you know to file an issue to [github.com/goccy/go-json](https://github.com/goccy/go-json) and **NOT** to this library.
31
31
32
+
## Enabling experimental base64 encoder/decoder
33
+
34
+
This feature is currently considered experimental.
35
+
36
+
Currently you can enable [github.com/segmentio/asm/base64](https://github.com/segmentio/asm/tree/main/base64) by specifying the `jwx_asmbase64` build tag
37
+
38
+
```shell
39
+
% go build -tags jwx_goccy ...
40
+
```
41
+
42
+
In our limited testing, this does not seem to improve performance significantly: presumably the other bottlenecks are more dominant. If you care enough to use this option, you probably wantt o enable `jwx_goccy` build tag as well.
43
+
32
44
## Using json.Number
33
45
34
46
If you want to parse numbers in the incoming JSON objects as json.Number
0 commit comments