Skip to content

Commit dd14eb1

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents bba056e + 3e16420 commit dd14eb1

File tree

3 files changed

+90
-105
lines changed

3 files changed

+90
-105
lines changed

go.mod

Lines changed: 27 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,54 @@
11
module github.com/MkDocsEditor/MkDocsEditor-Backend
22

3-
go 1.21
3+
go 1.23.0
4+
5+
toolchain go1.24.1
46

57
require (
68
github.com/OneOfOne/xxhash v1.2.8
7-
github.com/automerge/automerge-go v0.0.0-20240213171625-b7d9d510d501
8-
github.com/fatih/color v1.16.0
9-
github.com/fsnotify/fsnotify v1.7.0
10-
github.com/gorilla/websocket v1.5.1
11-
github.com/labstack/echo/v4 v4.11.4
9+
github.com/automerge/automerge-go v0.0.0-20241030180337-6fb4f2d08244
10+
github.com/fatih/color v1.18.0
11+
github.com/fsnotify/fsnotify v1.9.0
12+
github.com/gorilla/websocket v1.5.3
13+
github.com/labstack/echo/v4 v4.13.3
1214
github.com/mitchellh/go-homedir v1.1.0
13-
github.com/pterm/pterm v0.12.75
15+
github.com/pterm/pterm v0.12.80
1416
github.com/sergi/go-diff v1.3.1
15-
github.com/spf13/cobra v1.8.0
16-
github.com/spf13/viper v1.18.2
17-
golang.org/x/text v0.14.0
17+
github.com/spf13/cobra v1.9.1
18+
github.com/spf13/viper v1.20.1
19+
golang.org/x/text v0.24.0
1820
gopkg.in/yaml.v3 v3.0.1
1921
)
2022

2123
require (
2224
atomicgo.dev/cursor v0.2.0 // indirect
2325
atomicgo.dev/keyboard v0.2.9 // indirect
2426
atomicgo.dev/schedule v0.1.0 // indirect
25-
github.com/containerd/console v1.0.3 // indirect
26-
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
27+
github.com/containerd/console v1.0.4 // indirect
28+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
2729
github.com/gookit/color v1.5.4 // indirect
28-
github.com/hashicorp/hcl v1.0.0 // indirect
2930
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3031
github.com/labstack/gommon v0.4.2 // indirect
3132
github.com/lithammer/fuzzysearch v1.1.8 // indirect
32-
github.com/magiconair/properties v1.8.7 // indirect
33-
github.com/mattn/go-colorable v0.1.13 // indirect
33+
github.com/mattn/go-colorable v0.1.14 // indirect
3434
github.com/mattn/go-isatty v0.0.20 // indirect
35-
github.com/mattn/go-runewidth v0.0.15 // indirect
36-
github.com/mitchellh/mapstructure v1.5.0 // indirect
37-
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
38-
github.com/rivo/uniseg v0.4.4 // indirect
39-
github.com/sagikazarmark/locafero v0.4.0 // indirect
40-
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
35+
github.com/mattn/go-runewidth v0.0.16 // indirect
36+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
37+
github.com/rivo/uniseg v0.4.7 // indirect
38+
github.com/sagikazarmark/locafero v0.9.0 // indirect
4139
github.com/sourcegraph/conc v0.3.0 // indirect
42-
github.com/spf13/afero v1.11.0 // indirect
43-
github.com/spf13/cast v1.6.0 // indirect
44-
github.com/spf13/pflag v1.0.5 // indirect
40+
github.com/spf13/afero v1.14.0 // indirect
41+
github.com/spf13/cast v1.7.1 // indirect
42+
github.com/spf13/pflag v1.0.6 // indirect
4543
github.com/subosito/gotenv v1.6.0 // indirect
4644
github.com/valyala/bytebufferpool v1.0.0 // indirect
4745
github.com/valyala/fasttemplate v1.2.2 // indirect
4846
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
4947
go.uber.org/multierr v1.11.0 // indirect
50-
golang.org/x/crypto v0.21.0 // indirect
48+
golang.org/x/crypto v0.37.0 // indirect
5149
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
52-
golang.org/x/net v0.23.0 // indirect
53-
golang.org/x/sys v0.18.0 // indirect
54-
golang.org/x/term v0.18.0 // indirect
55-
golang.org/x/time v0.5.0 // indirect
56-
gopkg.in/ini.v1 v1.67.0 // indirect
50+
golang.org/x/net v0.39.0 // indirect
51+
golang.org/x/sys v0.32.0 // indirect
52+
golang.org/x/term v0.31.0 // indirect
53+
golang.org/x/time v0.8.0 // indirect
5754
)

0 commit comments

Comments
 (0)