Skip to content

Commit e75d442

Browse files
committed
fix typo, update dependencies
1 parent 6797ab3 commit e75d442

File tree

4 files changed

+347
-44
lines changed

4 files changed

+347
-44
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.idea
12
/.idea/.gitignore
23
/.idea/modules.xml
34
/.idea/sketchy.iml

go.mod

Lines changed: 32 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,47 @@
11
module github.com/aldernero/sketchy
22

3-
go 1.18
3+
go 1.23.2
44

55
require (
6-
github.com/aldernero/gaul v0.0.0-20240115183543-9c7ed484e7c8
7-
github.com/hajimehoshi/ebiten/v2 v2.6.3
6+
github.com/aldernero/gaul v0.0.0-20241111001829-17f5073b8c73
7+
github.com/hajimehoshi/ebiten/v2 v2.8.6
88
github.com/lucasb-eyer/go-colorful v1.2.0
9-
github.com/tdewolff/canvas v0.0.0-20231102134958-6de43c767dbf
9+
github.com/tdewolff/canvas v0.0.0-20241223212311-a4892b47d753
1010
)
1111

1212
require (
13+
git.sr.ht/~sbinet/gg v0.6.0 // indirect
1314
github.com/ByteArena/poly2tri-go v0.0.0-20170716161910-d102ad91854f // indirect
15+
github.com/Kagami/go-avif v0.1.0 // indirect
16+
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
1417
github.com/aldernero/interp v0.0.0-20231114035812-9ab0a3e37bf6 // indirect
15-
github.com/benoitkugler/textlayout v0.3.0 // indirect
18+
github.com/andybalholm/brotli v1.1.1 // indirect
19+
github.com/benoitkugler/textlayout v0.3.1 // indirect
1620
github.com/benoitkugler/textprocessing v0.0.3 // indirect
17-
github.com/dsnet/compress v0.0.1 // indirect
18-
github.com/ebitengine/purego v0.5.1 // indirect
19-
github.com/go-fonts/latin-modern v0.3.2 // indirect
20-
github.com/go-latex/latex v0.0.0-20231108140139-5c1ce85aa4ea // indirect
21-
github.com/go-text/typesetting v0.1.0 // indirect
21+
github.com/campoy/embedmd v1.0.0 // indirect
22+
github.com/ebitengine/gomobile v0.0.0-20241016134836-cc2e38a7c0ee // indirect
23+
github.com/ebitengine/hideconsole v1.0.0 // indirect
24+
github.com/ebitengine/purego v0.8.1 // indirect
25+
github.com/go-fonts/latin-modern v0.3.3 // indirect
26+
github.com/go-fonts/liberation v0.3.3 // indirect
27+
github.com/go-latex/latex v0.0.0-20240709081214-31cef3c7570e // indirect
28+
github.com/go-pdf/fpdf v0.9.0 // indirect
29+
github.com/go-text/typesetting v0.2.1 // indirect
2230
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
2331
github.com/jezek/xgb v1.1.1 // indirect
32+
github.com/kolesa-team/go-webp v1.0.4 // indirect
2433
github.com/ojrac/opensimplex-go v1.0.2 // indirect
25-
github.com/tdewolff/minify/v2 v2.20.10 // indirect
26-
github.com/tdewolff/parse/v2 v2.7.7 // indirect
27-
github.com/wcharczuk/go-chart/v2 v2.1.1 // indirect
28-
golang.org/x/exp/shiny v0.0.0-20231226003508-02704c960a9b // indirect
29-
golang.org/x/image v0.14.0 // indirect
30-
golang.org/x/mobile v0.0.0-20231127183840-76ac6878050a // indirect
31-
golang.org/x/net v0.19.0 // indirect
32-
golang.org/x/sync v0.5.0 // indirect
33-
golang.org/x/sys v0.15.0 // indirect
34-
golang.org/x/text v0.14.0 // indirect
35-
gonum.org/v1/plot v0.14.0 // indirect
36-
star-tex.org/x/tex v0.4.0 // indirect
34+
github.com/peterhellberg/gfx v0.0.0-20240717094052-4fa835cea5a4 // indirect
35+
github.com/pmezard/go-difflib v1.0.0 // indirect
36+
github.com/tdewolff/font v0.0.0-20241125190050-d899fdc808fc // indirect
37+
github.com/tdewolff/minify/v2 v2.21.2 // indirect
38+
github.com/tdewolff/parse/v2 v2.7.19 // indirect
39+
github.com/wcharczuk/go-chart/v2 v2.1.2 // indirect
40+
golang.org/x/image v0.23.0 // indirect
41+
golang.org/x/net v0.33.0 // indirect
42+
golang.org/x/sync v0.10.0 // indirect
43+
golang.org/x/sys v0.28.0 // indirect
44+
golang.org/x/text v0.21.0 // indirect
45+
gonum.org/v1/plot v0.15.0 // indirect
46+
star-tex.org/x/tex v0.5.0 // indirect
3747
)

0 commit comments

Comments
 (0)