mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-25 19:28:55 +00:00
45 lines
1.7 KiB
Modula-2
45 lines
1.7 KiB
Modula-2
module viscol
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
jsexport v0.0.0
|
|
dnmshared v0.0.0
|
|
resolv v0.0.0
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
|
|
github.com/hajimehoshi/ebiten/v2 v2.4.7
|
|
golang.org/x/image v0.0.0-20220902085622-e7cb96979f69
|
|
)
|
|
|
|
require (
|
|
github.com/ebitengine/purego v0.0.0-20220905075623-aeed57cda744 // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20220806181222-55e207c401ad // indirect
|
|
github.com/hajimehoshi/file2byteslice v0.0.0-20210813153925-5340248a8f41 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jezek/xgb v1.0.1 // indirect
|
|
github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86 // indirect
|
|
github.com/neelance/sourcemap v0.0.0-20200213170602-2833bce08e4c // indirect
|
|
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/spf13/cobra v1.2.1 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
go.uber.org/zap v1.23.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
|
|
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect
|
|
golang.org/x/mobile v0.0.0-20220722155234-aaac322e2105 // indirect
|
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
|
|
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect
|
|
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
|
|
golang.org/x/tools v0.1.12 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
)
|
|
|
|
replace (
|
|
dnmshared => ../dnmshared
|
|
jsexport => ../jsexport
|
|
resolv => ../resolv_tailored
|
|
)
|