Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 30 additions & 27 deletions model/user/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/freemed/remitt-server/model/user

go 1.24
go 1.24.0

replace (
github.com/freemed/remitt-server => ../../
Expand All @@ -13,44 +13,47 @@ require github.com/freemed/remitt-server/model v0.0.0-20250331143542-d0934c20733

require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/bytedance/sonic v1.13.2 // indirect
github.com/bytedance/sonic/loader v0.2.4 // indirect
github.com/cloudwego/base64x v0.1.5 // indirect
github.com/freemed/gokogiri/help v0.0.0-20250203225759-a4d8eb383f22 // indirect
github.com/freemed/gokogiri/util v0.0.0-20250203225759-a4d8eb383f22 // indirect
github.com/freemed/gokogiri/xml v0.0.0-20250203225759-a4d8eb383f22 // indirect
github.com/freemed/gokogiri/xpath v0.0.0-20250203225759-a4d8eb383f22 // indirect
github.com/freemed/ratago/xslt v0.0.0-20250203231425-016f1ea48158 // indirect
github.com/freemed/remitt-server/common v0.0.0-20250331143542-d0934c207335 // indirect
github.com/freemed/remitt-server/config v0.0.0-20250331143542-d0934c207335 // indirect
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
github.com/gin-contrib/sse v1.0.0 // indirect
github.com/gin-gonic/gin v1.10.0 // indirect
github.com/bytedance/gopkg v0.1.3 // indirect
github.com/bytedance/sonic v1.14.2 // indirect
github.com/bytedance/sonic/loader v0.4.0 // indirect
github.com/cloudwego/base64x v0.1.6 // indirect
github.com/freemed/gokogiri/help v0.0.0-20250831182455-de8ad4878374 // indirect
github.com/freemed/gokogiri/util v0.0.0-20250831182455-de8ad4878374 // indirect
github.com/freemed/gokogiri/xml v0.0.0-20250831182455-de8ad4878374 // indirect
github.com/freemed/gokogiri/xpath v0.0.0-20250831182455-de8ad4878374 // indirect
github.com/freemed/ratago/xslt v0.0.0-20251105151549-80fda038dff4 // indirect
github.com/freemed/remitt-server/common v0.0.0-20251105151329-d7601a90921e // indirect
github.com/freemed/remitt-server/config v0.0.0-20251105151329-d7601a90921e // indirect
github.com/gabriel-vasile/mimetype v1.4.11 // indirect
github.com/gin-contrib/sse v1.1.0 // indirect
github.com/gin-gonic/gin v1.11.0 // indirect
github.com/go-gorp/gorp v2.2.0+incompatible // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.26.0 // indirect
github.com/go-sql-driver/mysql v1.9.1 // indirect
github.com/go-playground/validator/v10 v10.28.0 // indirect
github.com/go-sql-driver/mysql v1.9.3 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/goccy/go-yaml v1.19.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mattes/migrate v3.0.1+incompatible // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/quic-go/qpack v0.6.0 // indirect
github.com/quic-go/quic-go v0.57.1 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
golang.org/x/arch v0.15.0 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/net v0.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.23.0 // indirect
google.golang.org/protobuf v1.36.6 // indirect
github.com/ugorji/go/codec v1.3.1 // indirect
golang.org/x/arch v0.23.0 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
google.golang.org/protobuf v1.36.10 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading