Skip to content

Commit 6a2b3d4

Browse files
authored
Merge pull request #325 from earthstar-project/fix-fast-stable-json-stringify
Fix fast stable json stringify
2 parents 454a736 + dcb67bd commit 6a2b3d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ Or Deno:
4242
import * as Earthstar from "https://deno.land/x/earthstar/mod.ts";
4343
```
4444

45-
> Earthstar's web syncing does not work with version of Deno between 1.27.0 -
45+
> Earthstar's web syncing does not work with version of Deno between 1.28.0 -
4646
> 1.29.3 (inclusive) due to a regression in these versions' WebSocket
47-
> implementation. **Use Deno 1.30.0. or later**, or Deno 1.26.2.
47+
> implementation. **Use Deno 1.30.0. or later**.
4848
4949
or installed with NPM:
5050

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export {
22
shallowEqualArrays,
33
shallowEqualObjects,
44
} from "https://deno.land/x/[email protected]/mod.ts";
5-
export { default as fast_json_stable_stringify } from "https://esm.sh/[email protected]";
5+
export { default as fast_json_stable_stringify } from "npm:[email protected]";
66
export * as rfc4648 from "https://esm.sh/[email protected]";
77
export * as sha256_uint8array from "https://esm.sh/[email protected]";
88
export * as ed from "https://raw.githubusercontent.com/sgwilym/noble-ed25519/153f9e7e9952ad22885f5abb3f6abf777bef4a4c/mod.ts";

0 commit comments

Comments
 (0)