Skip to content

Commit

Permalink
update go.mod, version file is in empi, not top level.
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall C. O'Reilly committed Apr 14, 2023
1 parent bd40cb8 commit 5a73e2d
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 64 deletions.
2 changes: 1 addition & 1 deletion empi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VERS=v1.0.20
PACKAGE=empi
GIT_COMMIT=`git rev-parse --short HEAD`
VERS_DATE=`date -u +%Y-%m-%d\ %H:%M`
VERS_FILE=$(shell echo `git rev-parse --show-toplevel`/version.go)
VERS_FILE=version.go

release:
/bin/rm -f $(VERS_FILE)
Expand Down
45 changes: 23 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module github.com/emer/empi
go 1.18

require (
github.com/emer/etable v1.1.11
github.com/goki/ki v1.1.8
github.com/emer/etable v1.1.21
github.com/goki/ki v1.1.11
)

require (
Expand All @@ -13,35 +13,36 @@ require (
github.com/BurntSushi/xgb v0.0.0-20210121224620-deaf085860bc // indirect
github.com/BurntSushi/xgbutil v0.0.0-20190907113008-ad855c713046 // indirect
github.com/akutz/sortfold v0.2.1 // indirect
github.com/alecthomas/chroma v0.10.0 // indirect
github.com/alecthomas/chroma/v2 v2.7.0 // indirect
github.com/anthonynsimon/bild v0.13.0 // indirect
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/dlclark/regexp2 v1.4.0 // indirect
github.com/dlclark/regexp2 v1.8.1 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b // indirect
github.com/go-gl/mathgl v1.0.0 // indirect
github.com/goki/freetype v0.0.0-20220119013949-7a161fd3728c // indirect
github.com/goki/gi v1.3.7 // indirect
github.com/goki/kigen v1.0.0 // indirect
github.com/goki/mat32 v1.0.12 // indirect
github.com/goki/pi v1.0.20 // indirect
github.com/goki/freetype v1.0.1 // indirect
github.com/goki/gi v1.3.17 // indirect
github.com/goki/kigen v1.0.2 // indirect
github.com/goki/mat32 v1.0.15 // indirect
github.com/goki/pi v1.0.27 // indirect
github.com/goki/prof v1.0.0 // indirect
github.com/goki/vgpu v1.0.5 // indirect
github.com/goki/vulkan v0.0.0-20220512102541-6e89b8ce8542 // indirect
github.com/goki/vgpu v1.0.22 // indirect
github.com/goki/vulkan v1.0.6 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/h2non/filetype v1.1.3 // indirect
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/jinzhu/copier v0.3.5 // indirect
github.com/srwiley/rasterx v0.0.0-20220128185129-2efea2b9ea41 // indirect
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
github.com/srwiley/scanx v0.0.0-20190309010443-e94503791388 // indirect
golang.org/x/exp v0.0.0-20220518171630-0b5c67f07fdf // indirect
golang.org/x/image v0.0.0-20220413100746-70e8d0d3baa9 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.11 // indirect
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
gonum.org/v1/gonum v0.11.0 // indirect
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
golang.org/x/image v0.6.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/tools v0.7.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gonum.org/v1/gonum v0.12.0 // indirect
)
Loading

0 comments on commit 5a73e2d

Please sign in to comment.