forked from richardartoul/nola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
39 lines (35 loc) · 1.49 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module github.com/richardartoul/nola
go 1.19
require (
github.com/DataDog/sketches-go v1.4.1
github.com/apple/foundationdb/bindings/go v0.0.0-20220521054011-a88e049b28d8
github.com/buger/jsonparser v1.1.1
github.com/dgraph-io/ristretto v0.1.1
github.com/google/btree v1.1.2
github.com/google/uuid v1.3.0
github.com/stretchr/testify v1.7.1
github.com/tetratelabs/wazero v1.0.0-pre.5
github.com/wapc/wapc-go v0.5.6
github.com/wapc/wapc-guest-tinygo v0.3.3
github.com/wasmerio/wasmer-go v1.0.4
golang.org/x/sync v0.1.0
)
require (
github.com/Workiva/go-datastructures v1.0.53 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)
// wapc-go only works with pre.4 because pre.5 changes the API slightly. Once wapc-go
// is released to work with pre.5 we can remove this and upgrade.
replace github.com/tetratelabs/wazero => github.com/tetratelabs/wazero v1.0.0-pre.4