Skip to content

Commit b275d5e

Browse files
authored
Merge pull request #29 from srl-labs/fixes
Fixes
2 parents 850f4ee + 4ab178f commit b275d5e

6 files changed

Lines changed: 236 additions & 169 deletions

File tree

go.mod

Lines changed: 50 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
module github.com/srl-labs/clab-api-server
22

3-
go 1.24
3+
go 1.24.0
44

55
require (
6-
github.com/charmbracelet/log v0.4.1
7-
github.com/gin-gonic/gin v1.10.0
8-
github.com/golang-jwt/jwt/v5 v5.2.2
6+
github.com/charmbracelet/log v0.4.2
7+
github.com/gin-gonic/gin v1.11.0
8+
github.com/golang-jwt/jwt/v5 v5.3.0
99
github.com/joho/godotenv v1.5.1
1010
github.com/msteinert/pam v1.2.0
11-
github.com/shirou/gopsutil/v4 v4.25.4
12-
github.com/spf13/viper v1.20.1
13-
github.com/stretchr/testify v1.10.0
11+
github.com/shirou/gopsutil/v4 v4.25.10
12+
github.com/spf13/viper v1.21.0
13+
github.com/stretchr/testify v1.11.1
1414
github.com/swaggo/files v1.0.1
15-
github.com/swaggo/gin-swagger v1.6.0
16-
github.com/swaggo/swag v1.16.4
15+
github.com/swaggo/gin-swagger v1.6.1
16+
github.com/swaggo/swag v1.16.6
1717
gopkg.in/yaml.v3 v3.0.1
1818
)
1919

@@ -22,17 +22,19 @@ require (
2222
github.com/PuerkitoBio/purell v1.1.1 // indirect
2323
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
2424
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
25-
github.com/bytedance/sonic v1.11.6 // indirect
26-
github.com/bytedance/sonic/loader v0.1.1 // indirect
27-
github.com/charmbracelet/lipgloss v1.0.0 // indirect
28-
github.com/charmbracelet/x/ansi v0.4.2 // indirect
29-
github.com/cloudwego/base64x v0.1.4 // indirect
30-
github.com/cloudwego/iasm v0.2.0 // indirect
25+
github.com/bytedance/sonic v1.14.0 // indirect
26+
github.com/bytedance/sonic/loader v0.3.0 // indirect
27+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
28+
github.com/charmbracelet/lipgloss v1.1.0 // indirect
29+
github.com/charmbracelet/x/ansi v0.8.0 // indirect
30+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
31+
github.com/charmbracelet/x/term v0.2.1 // indirect
32+
github.com/cloudwego/base64x v0.1.6 // indirect
3133
github.com/davecgh/go-spew v1.1.1 // indirect
32-
github.com/ebitengine/purego v0.8.2 // indirect
33-
github.com/fsnotify/fsnotify v1.8.0 // indirect
34-
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
35-
github.com/gin-contrib/sse v0.1.0 // indirect
34+
github.com/ebitengine/purego v0.9.0 // indirect
35+
github.com/fsnotify/fsnotify v1.9.0 // indirect
36+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
37+
github.com/gin-contrib/sse v1.1.0 // indirect
3638
github.com/go-logfmt/logfmt v0.6.0 // indirect
3739
github.com/go-ole/go-ole v1.2.6 // indirect
3840
github.com/go-openapi/jsonpointer v0.19.5 // indirect
@@ -41,44 +43,51 @@ require (
4143
github.com/go-openapi/swag v0.19.15 // indirect
4244
github.com/go-playground/locales v0.14.1 // indirect
4345
github.com/go-playground/universal-translator v0.18.1 // indirect
44-
github.com/go-playground/validator/v10 v10.20.0 // indirect
45-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
46+
github.com/go-playground/validator/v10 v10.27.0 // indirect
47+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
4648
github.com/goccy/go-json v0.10.2 // indirect
49+
github.com/goccy/go-yaml v1.18.0 // indirect
4750
github.com/josharian/intern v1.0.0 // indirect
4851
github.com/json-iterator/go v1.1.12 // indirect
49-
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
52+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
5053
github.com/leodido/go-urn v1.4.0 // indirect
5154
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
5255
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
5356
github.com/mailru/easyjson v0.7.6 // indirect
5457
github.com/mattn/go-isatty v0.0.20 // indirect
58+
github.com/mattn/go-runewidth v0.0.16 // indirect
5559
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5660
github.com/modern-go/reflect2 v1.0.2 // indirect
5761
github.com/muesli/termenv v0.16.0 // indirect
58-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
62+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
5963
github.com/pmezard/go-difflib v1.0.0 // indirect
60-
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
64+
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
65+
github.com/quic-go/qpack v0.5.1 // indirect
66+
github.com/quic-go/quic-go v0.54.0 // indirect
6167
github.com/rivo/uniseg v0.4.7 // indirect
62-
github.com/sagikazarmark/locafero v0.7.0 // indirect
63-
github.com/sourcegraph/conc v0.3.0 // indirect
64-
github.com/spf13/afero v1.12.0 // indirect
65-
github.com/spf13/cast v1.7.1 // indirect
66-
github.com/spf13/pflag v1.0.6 // indirect
68+
github.com/sagikazarmark/locafero v0.11.0 // indirect
69+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
70+
github.com/spf13/afero v1.15.0 // indirect
71+
github.com/spf13/cast v1.10.0 // indirect
72+
github.com/spf13/pflag v1.0.10 // indirect
6773
github.com/subosito/gotenv v1.6.0 // indirect
68-
github.com/tklauser/go-sysconf v0.3.12 // indirect
69-
github.com/tklauser/numcpus v0.6.1 // indirect
74+
github.com/tklauser/go-sysconf v0.3.15 // indirect
75+
github.com/tklauser/numcpus v0.10.0 // indirect
7076
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
71-
github.com/ugorji/go/codec v1.2.12 // indirect
77+
github.com/ugorji/go/codec v1.3.0 // indirect
78+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
7279
github.com/yusufpapurcu/wmi v1.2.4 // indirect
73-
go.uber.org/atomic v1.9.0 // indirect
74-
go.uber.org/multierr v1.9.0 // indirect
75-
golang.org/x/arch v0.8.0 // indirect
76-
golang.org/x/crypto v0.36.0 // indirect
80+
go.uber.org/mock v0.5.0 // indirect
81+
go.yaml.in/yaml/v3 v3.0.4 // indirect
82+
golang.org/x/arch v0.20.0 // indirect
83+
golang.org/x/crypto v0.40.0 // indirect
7784
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
78-
golang.org/x/net v0.38.0 // indirect
79-
golang.org/x/sys v0.32.0 // indirect
80-
golang.org/x/text v0.23.0 // indirect
81-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
82-
google.golang.org/protobuf v1.36.1 // indirect
85+
golang.org/x/mod v0.26.0 // indirect
86+
golang.org/x/net v0.42.0 // indirect
87+
golang.org/x/sync v0.16.0 // indirect
88+
golang.org/x/sys v0.37.0 // indirect
89+
golang.org/x/text v0.28.0 // indirect
90+
golang.org/x/tools v0.35.0 // indirect
91+
google.golang.org/protobuf v1.36.9 // indirect
8392
gopkg.in/yaml.v2 v2.4.0 // indirect
8493
)

0 commit comments

Comments
 (0)