-
Notifications
You must be signed in to change notification settings - Fork 58
/
go.mod
35 lines (32 loc) · 1.6 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module github.com/danfragoso/thdwb
go 1.16
require (
github.com/danfragoso/thdwb/assets v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/bun v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/gg v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/hotdog v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/ketchup v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/mayo v0.0.0-20210411220950-eaec6f13eccb // indirect
github.com/danfragoso/thdwb/mustard v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/pages v0.0.0-20210411220950-eaec6f13eccb // indirect
github.com/danfragoso/thdwb/profiler v0.0.0-20210411220950-eaec6f13eccb
github.com/danfragoso/thdwb/sauce v0.0.0-20210411220950-eaec6f13eccb
github.com/go-gl/gl v0.0.0-20210501111010-69f74958bac0
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20210410170116-ea3d685f79fb
github.com/goki/freetype v0.0.0-20181231101311-fa8a33aabaff // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb // indirect
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1 // indirect
)
replace (
github.com/danfragoso/thdwb/assets => ./assets
github.com/danfragoso/thdwb/bun => ./bun
github.com/danfragoso/thdwb/gg => ./gg
github.com/danfragoso/thdwb/hotdog => ./hotdog
github.com/danfragoso/thdwb/ketchup => ./ketchup
github.com/danfragoso/thdwb/mayo => ./mayo
github.com/danfragoso/thdwb/mustard => ./mustard
github.com/danfragoso/thdwb/pages => ./pages
github.com/danfragoso/thdwb/profiler => ./profiler
github.com/danfragoso/thdwb/sauce => ./sauce
)