Skip to content

Commit cc74f3e

Browse files
author
Kronos
committed
Update imports & switch mattn to modernc sqlite driver
1 parent 752b444 commit cc74f3e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+568
-235
lines changed

cmd/app/main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package main
22

33
import (
4-
"github.com/Tyz3/nymgraph/cmd/app/config"
5-
"github.com/Tyz3/nymgraph/internal/repository"
6-
"github.com/Tyz3/nymgraph/internal/service"
7-
"github.com/Tyz3/nymgraph/internal/state"
8-
"github.com/Tyz3/nymgraph/internal/view"
9-
"github.com/Tyz3/nymgraph/pkg/client/sqlite3"
10-
"github.com/Tyz3/nymgraph/pkg/utils"
4+
"github.com/craftdome/nymgraph/cmd/app/config"
5+
"github.com/craftdome/nymgraph/internal/repository"
6+
"github.com/craftdome/nymgraph/internal/service"
7+
"github.com/craftdome/nymgraph/internal/state"
8+
"github.com/craftdome/nymgraph/internal/view"
9+
"github.com/craftdome/nymgraph/pkg/client/sqlite3"
10+
"github.com/craftdome/nymgraph/pkg/utils"
1111
)
1212

1313
func init() {

go.mod

Lines changed: 42 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,65 @@
1-
module github.com/Tyz3/nymgraph
1+
module github.com/craftdome/nymgraph
22

3-
go 1.20
3+
go 1.21.4
44

55
require (
6-
fyne.io/fyne/v2 v2.3.3
7-
github.com/Tyz3/fyne-extra v0.0.0-20230510064333-6fa4ebf35777
8-
github.com/Tyz3/go-nym v0.0.0-20230612135536-129641fd11a0
9-
github.com/go-playground/validator/v10 v10.13.0
10-
github.com/mattn/go-sqlite3 v1.14.16
6+
fyne.io/fyne/v2 v2.4.2
7+
github.com/craftdome/go-nym v1.0.2
8+
github.com/go-playground/validator/v10 v10.16.0
119
github.com/pkg/errors v0.9.1
1210
golang.design/x/clipboard v0.7.0
13-
golang.org/x/net v0.9.0
11+
golang.org/x/net v0.19.0
1412
gopkg.in/yaml.v3 v3.0.1
13+
modernc.org/sqlite v1.28.0
1514
)
1615

1716
require (
18-
fyne.io/systray v1.10.1-0.20230312215936-7f71b037e260 // indirect
19-
github.com/ActiveState/termtest/conpty v0.5.0 // indirect
20-
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
21-
github.com/benoitkugler/textlayout v0.3.0 // indirect
22-
github.com/creack/pty v1.1.11 // indirect
17+
fyne.io/systray v1.10.1-0.20231115130155-104f5ef7839e // indirect
2318
github.com/davecgh/go-spew v1.1.1 // indirect
24-
github.com/fredbi/uri v0.1.0 // indirect
25-
github.com/fsnotify/fsnotify v1.5.4 // indirect
19+
github.com/dustin/go-humanize v1.0.1 // indirect
20+
github.com/fredbi/uri v1.0.0 // indirect
21+
github.com/fsnotify/fsnotify v1.6.0 // indirect
2622
github.com/fyne-io/gl-js v0.0.0-20220119005834-d2da28d9ccfe // indirect
2723
github.com/fyne-io/glfw-js v0.0.0-20220120001248-ee7290d23504 // indirect
2824
github.com/fyne-io/image v0.0.0-20220602074514-4956b0afb3d2 // indirect
29-
github.com/fyne-io/terminal v0.0.0-20230223114940-c76e408adbd3 // indirect
30-
github.com/go-gl/gl v0.0.0-20211210172815-726fda9656d6 // indirect
31-
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b // indirect
25+
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
26+
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect
27+
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20231124074035-2de0cf0c80af // indirect
3228
github.com/go-playground/locales v0.14.1 // indirect
3329
github.com/go-playground/universal-translator v0.18.1 // indirect
34-
github.com/go-text/typesetting v0.0.0-20221212183139-1eb938670a1f // indirect
30+
github.com/go-text/render v0.0.0-20230619120952-35bccb6164b8 // indirect
31+
github.com/go-text/typesetting v0.0.0-20230616162802-9c17dd34aa4a // indirect
3532
github.com/godbus/dbus/v5 v5.1.0 // indirect
36-
github.com/goki/freetype v0.0.0-20220119013949-7a161fd3728c // indirect
33+
github.com/google/uuid v1.3.0 // indirect
3734
github.com/gopherjs/gopherjs v1.17.2 // indirect
38-
github.com/gorilla/websocket v1.5.0 // indirect
35+
github.com/gorilla/websocket v1.5.1 // indirect
3936
github.com/jsummers/gobmp v0.0.0-20151104160322-e2ba15ffa76e // indirect
40-
github.com/kr/pretty v0.3.0 // indirect
41-
github.com/leodido/go-urn v1.2.3 // indirect
37+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
38+
github.com/leodido/go-urn v1.2.4 // indirect
39+
github.com/mattn/go-isatty v0.0.16 // indirect
4240
github.com/pmezard/go-difflib v1.0.0 // indirect
43-
github.com/rogpeppe/go-internal v1.10.0 // indirect
44-
github.com/srwiley/oksvg v0.0.0-20220731023508-a61f04f16b76 // indirect
45-
github.com/srwiley/rasterx v0.0.0-20210519020934-456a8d69b780 // indirect
46-
github.com/stretchr/testify v1.8.2 // indirect
41+
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
42+
github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c // indirect
43+
github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef // indirect
44+
github.com/stretchr/testify v1.8.4 // indirect
4745
github.com/tevino/abool v1.2.0 // indirect
48-
github.com/yuin/goldmark v1.4.13 // indirect
49-
golang.org/x/crypto v0.7.0 // indirect
46+
github.com/yuin/goldmark v1.5.5 // indirect
47+
golang.org/x/crypto v0.16.0 // indirect
5048
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect
51-
golang.org/x/image v0.6.0 // indirect
52-
golang.org/x/mobile v0.0.0-20230301163155-e0f57694e12c // indirect
53-
golang.org/x/sys v0.7.0 // indirect
54-
golang.org/x/text v0.9.0 // indirect
55-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
49+
golang.org/x/image v0.11.0 // indirect
50+
golang.org/x/mobile v0.0.0-20230531173138-3c911d8e3eda // indirect
51+
golang.org/x/mod v0.12.0 // indirect
52+
golang.org/x/sys v0.15.0 // indirect
53+
golang.org/x/text v0.14.0 // indirect
54+
golang.org/x/tools v0.12.0 // indirect
5655
honnef.co/go/js/dom v0.0.0-20210725211120-f030747120f2 // indirect
56+
lukechampine.com/uint128 v1.2.0 // indirect
57+
modernc.org/cc/v3 v3.40.0 // indirect
58+
modernc.org/ccgo/v3 v3.16.13 // indirect
59+
modernc.org/libc v1.29.0 // indirect
60+
modernc.org/mathutil v1.6.0 // indirect
61+
modernc.org/memory v1.7.2 // indirect
62+
modernc.org/opt v0.1.3 // indirect
63+
modernc.org/strutil v1.1.3 // indirect
64+
modernc.org/token v1.0.1 // indirect
5765
)

0 commit comments

Comments
 (0)