Skip to content

Commit d4445f3

Browse files
author
Jagger De Leo
authored
fix: Update go.mod, including wasmtime v0.35.0-aarch64 (#214)
* fix: Update go.mod, including wasmtime v0.35.0-aarch64 * fix(test): replace broken CNAME test with a different domain * fix(wasmedge): revert WasmEdge version bump
1 parent 9716d28 commit d4445f3

File tree

3 files changed

+64
-50
lines changed

3 files changed

+64
-50
lines changed

go.mod

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,36 @@ module github.com/suborbital/reactr
33
go 1.17
44

55
require (
6-
github.com/bytecodealliance/wasmtime-go v0.31.0
6+
github.com/bytecodealliance/wasmtime-go v0.35.0
77
github.com/go-redis/redis/v8 v8.11.4
88
github.com/go-sql-driver/mysql v1.6.0
99
github.com/google/uuid v1.3.0
10-
github.com/jackc/pgx/v4 v4.13.0
10+
github.com/jackc/pgx/v4 v4.15.0
1111
github.com/jmoiron/sqlx v1.3.4
1212
github.com/pkg/errors v0.9.1
1313
github.com/second-state/WasmEdge-go v0.9.0-rc5
14-
github.com/suborbital/grav v0.4.1
15-
github.com/suborbital/vektor v0.5.1-0.20211112160641-0b7e68b46795
14+
github.com/suborbital/grav v0.5.0
15+
github.com/suborbital/vektor v0.5.2
1616
github.com/wasmerio/wasmer-go v1.0.4
17-
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
17+
golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70
1818
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
1919
)
2020

2121
require (
2222
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2323
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2424
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
25-
github.com/jackc/pgconn v1.10.1 // indirect
25+
github.com/jackc/pgconn v1.11.0 // indirect
2626
github.com/jackc/pgio v1.0.0 // indirect
2727
github.com/jackc/pgpassfile v1.0.0 // indirect
2828
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
2929
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
30-
github.com/jackc/pgtype v1.9.1 // indirect
30+
github.com/jackc/pgtype v1.10.0 // indirect
3131
github.com/julienschmidt/httprouter v1.3.0 // indirect
32-
github.com/sethvargo/go-envconfig v0.4.0 // indirect
33-
golang.org/x/net v0.0.0-20211201190559-0a0e4e1bb54c // indirect
34-
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect
32+
github.com/sethvargo/go-envconfig v0.5.0 // indirect
33+
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
3534
golang.org/x/text v0.3.7 // indirect
3635
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
3736
)
3837

39-
replace github.com/bytecodealliance/wasmtime-go => github.com/suborbital/wasmtime-go v0.31.0-subo
38+
replace github.com/bytecodealliance/wasmtime-go => github.com/suborbital/wasmtime-go v0.35.0-aarch64

0 commit comments

Comments
 (0)