Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.5'

- name: Initialize Project
run: make init
Expand Down
6 changes: 3 additions & 3 deletions benchmarks/go.mod
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
module github.com/siyul-park/minivm/benchmarks

go 1.26.2
go 1.26.5

require (
github.com/d5/tengo/v2 v2.17.0
github.com/dop251/goja v0.0.0-20260311135729-065cd970411c
github.com/go-python/gpython v0.2.0
github.com/siyul-park/minivm v0.0.0
github.com/stretchr/testify v1.11.1
github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834
github.com/tetratelabs/wazero v1.12.0
github.com/traefik/yaegi v0.16.1
github.com/yuin/gopher-lua v1.1.2
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/go-python/gpython v0.2.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/peterh/liner v1.2.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.3.4 // indirect
github.com/traefik/yaegi v0.16.1 // indirect
golang.org/x/sys v0.44.0 // indirect
golang.org/x/text v0.3.8 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siyul-park/minivm

go 1.26.2
go 1.26.5

require (
github.com/dave/jennifer v1.7.1
Expand Down
Loading