diff options
author | Ayke van Laethem <[email protected]> | 2022-06-11 17:24:54 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-08-30 12:38:06 +0200 |
commit | 4695da83b71c291bc89a14dc41c9b9a91a3c6210 (patch) | |
tree | 3b4ed26f336833d4e80f1963e598714c66575bd7 /go.mod | |
parent | f094e895c55204730b0230b3b2f6fc3bb32f325a (diff) | |
download | tinygo-4695da83b71c291bc89a14dc41c9b9a91a3c6210.tar.gz tinygo-4695da83b71c291bc89a14dc41c9b9a91a3c6210.zip |
all: drop support for Go 1.16 and Go 1.17
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -1,6 +1,6 @@ module github.com/tinygo-org/tinygo -go 1.16 +go 1.18 require ( github.com/aykevl/go-wasm v0.0.2-0.20220616010729-4a0a888aebdc @@ -17,3 +17,15 @@ require ( gopkg.in/yaml.v2 v2.4.0 tinygo.org/x/go-llvm v0.0.0-20220802112859-5bb0b77907a7 ) + +require ( + github.com/chromedp/sysutil v1.0.0 // indirect + github.com/creack/goselect v0.1.2 // indirect + github.com/gobwas/httphead v0.1.0 // indirect + github.com/gobwas/pool v0.2.1 // indirect + github.com/gobwas/ws v1.1.0 // indirect + github.com/josharian/intern v1.0.0 // indirect + github.com/mailru/easyjson v0.7.7 // indirect + github.com/mattn/go-isatty v0.0.12 // indirect + golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect +) |