-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
88 lines (84 loc) · 4.31 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
module github.com/freemed/remitt-server
go 1.22
replace (
github.com/freemed/gokogiri/help => ../gokogiri/help
github.com/freemed/gokogiri/util => ../gokogiri/util
github.com/freemed/gokogiri/xml => ../gokogiri/xml
github.com/freemed/gokogiri/xpath => ../gokogiri/xpath
github.com/freemed/ratago => ../ratago
github.com/freemed/ratago/xslt => ../ratago/xslt
github.com/freemed/remitt-server => ./
github.com/freemed/remitt-server/api => ./api
github.com/freemed/remitt-server/client => ./client
github.com/freemed/remitt-server/common => ./common
github.com/freemed/remitt-server/config => ./config
github.com/freemed/remitt-server/jobqueue => ./jobqueue
github.com/freemed/remitt-server/model => ./model
github.com/freemed/remitt-server/model/user => ./model/user
github.com/freemed/remitt-server/translation => ./translation
github.com/freemed/remitt-server/transport => ./transport
)
require (
github.com/braintree/manners v0.0.0-20160418043613-82a8879fc5fd
github.com/freemed/remitt-server/api v0.0.0-20240315224111-230a584acffa
github.com/freemed/remitt-server/common v0.0.0-20240315224111-230a584acffa
github.com/freemed/remitt-server/config v0.0.0-20240315224111-230a584acffa
github.com/freemed/remitt-server/jobqueue v0.0.0-20240315224111-230a584acffa
github.com/freemed/remitt-server/model v0.0.0-20240315224111-230a584acffa
github.com/gin-gonic/contrib v0.0.0-20221130124618-7e01895a63f2
github.com/gin-gonic/gin v1.9.1
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/bytedance/sonic v1.11.6 // indirect
github.com/bytedance/sonic/loader v0.1.1 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
github.com/chenzhuoyu/iasm v0.9.1 // indirect
github.com/cloudwego/base64x v0.1.4 // indirect
github.com/cloudwego/iasm v0.2.0 // indirect
github.com/freemed/gokogiri/help v0.0.0-20230628164547-0f93de0487ac // indirect
github.com/freemed/gokogiri/util v0.0.0-20230628164547-0f93de0487ac // indirect
github.com/freemed/gokogiri/xml v0.0.0-20230628164547-0f93de0487ac // indirect
github.com/freemed/gokogiri/xpath v0.0.0-20230628164547-0f93de0487ac // indirect
github.com/freemed/ratago/xslt v0.0.0-20230724152402-3a0c7faa982f // indirect
github.com/freemed/remitt-server/model/user v0.0.0-20240315224111-230a584acffa // indirect
github.com/freemed/remitt-server/translation v0.0.0-20240315224111-230a584acffa // indirect
github.com/freemed/remitt-server/transport v0.0.0-20240315224111-230a584acffa // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/gin-contrib/sse v0.1.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.20.0 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
github.com/kr/fs v0.1.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/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/orcaman/writerseeker v0.0.0-20200621085525-1d3f536ff85e // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/phpdave11/gofpdf v1.4.2 // indirect
github.com/phpdave11/gofpdi v1.0.13 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/sftp v1.13.6 // indirect
github.com/robertkrimen/otto v0.4.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
golang.org/x/arch v0.8.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)