-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
86 lines (79 loc) · 3.49 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
module github.com/France-ioi/AlgoreaBackend/v2
go 1.20
exclude github.com/SermoDigital/jose v0.9.1
exclude github.com/thingful/httpmock v0.0.2
exclude github.com/thingful/httpmock v0.0.1
replace github.com/jinzhu/gorm v1.9.6 => github.com/France-ioi/gorm v0.0.0-20200829222212-0373d329b88b
require (
bou.ke/monkey v1.0.1
github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible
github.com/DATA-DOG/go-sqlmock v1.3.2
github.com/France-ioi/mapstructure v1.1.3-0.20190228185851-70b68b9b4003
github.com/France-ioi/validator v9.29.2-0.20220110032854-1b7299b1a4db+incompatible
github.com/PaesslerAG/jsonpath v0.1.1
github.com/SermoDigital/jose v0.0.0-20180104203859-803625baeddc
github.com/akrylysov/algnhsa v0.12.1
github.com/aws/aws-lambda-go v1.28.0
github.com/cucumber/godog v0.14.1
github.com/cucumber/messages/go/v21 v21.0.1
github.com/go-chi/chi v3.3.3+incompatible
github.com/go-chi/cors v1.0.0
github.com/go-chi/render v1.0.1
github.com/go-playground/locales v0.12.1
github.com/go-playground/universal-translator v0.16.0
github.com/go-sql-driver/mysql v1.6.0
github.com/google/go-cmp v0.5.9
github.com/jinzhu/gorm v1.9.6
github.com/lithammer/dedent v1.1.0
github.com/luna-duclos/instrumentedsql v1.1.3
github.com/pmezard/go-difflib v1.0.0
github.com/rubenv/sql-migrate v0.0.0-20181213081019-5a8808c14925
github.com/sirupsen/logrus v1.2.0
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.3.1
github.com/stretchr/testify v1.8.2
github.com/thingful/httpmock v0.0.0-20171102191412-cfb4c64b7d81
github.com/zenovich/flowmingo v1.0.4
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
gopkg.in/yaml.v2 v2.2.8
)
require (
github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a // indirect
github.com/PaesslerAG/gval v1.0.0 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/cucumber/gherkin/go/v26 v26.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/gobuffalo/packr v1.21.0 // indirect
github.com/gofrs/uuid v4.3.1+incompatible // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/goware/urlx v0.2.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-memdb v1.3.4 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.1.0 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.4.0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/gorp.v1 v1.7.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)