-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathgo.mod
76 lines (72 loc) · 3.58 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
module github.com/sqlitebrowser/dbhub.io
go 1.18
replace (
github.com/Sirupsen/logrus v1.0.5 => github.com/sirupsen/logrus v1.0.5
github.com/Sirupsen/logrus v1.3.0 => github.com/sirupsen/logrus v1.3.0
github.com/Sirupsen/logrus v1.4.0 => github.com/sirupsen/logrus v1.4.0
github.com/Sirupsen/logrus v1.5.0 => github.com/sirupsen/logrus v1.5.0
github.com/Sirupsen/logrus v1.6.0 => github.com/sirupsen/logrus v1.6.0
)
require (
github.com/BurntSushi/toml v0.3.1
github.com/NYTimes/gziphandler v1.1.1
github.com/aquilax/truncate v1.0.0
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
github.com/bradleypeabody/gorilla-sessions-memcache v0.0.0-20181103040241-659414f458e1
github.com/docker/go-units v0.5.0
github.com/go-playground/validator/v10 v10.3.0
github.com/golang-migrate/migrate/v4 v4.15.3-0.20230407054901-84009cf2ab46
github.com/gwenn/gosqlite v0.0.0-20200521090053-24878be1a237
github.com/jackc/pgx/v5 v5.3.1
github.com/minio/minio-go v6.0.14+incompatible
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/segmentio/ksuid v1.0.3
github.com/smtp2go-oss/smtp2go-go v1.0.2
github.com/sqlitebrowser/github_flavored_markdown v0.0.0-20190120045821-b8cf8f054e47
golang.org/x/crypto v0.14.0
golang.org/x/oauth2 v0.1.0
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/go-ini/ini v1.56.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/gorilla/sessions v1.2.0 // indirect
github.com/gwenn/yacr v0.0.0-20200112083327-bbe82c1f4d60 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.0 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/memcachier/mc v2.0.1+incompatible // indirect
github.com/microcosm-cc/bluemonday v1.0.16 // indirect
github.com/rabbitmq/amqp091-go v1.9.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470 // indirect
github.com/shurcooL/go v0.0.0-20190704215121-7189cc372560 // indirect
github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041 // indirect
github.com/shurcooL/highlight_diff v0.0.0-20181222201841-111da2e7d480 // indirect
github.com/shurcooL/highlight_go v0.0.0-20191220051317-782971ddf21b // indirect
github.com/shurcooL/octicon v0.0.0-20191102190552-cbb32d6a785c // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/smartystreets/goconvey v1.8.0 // indirect
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d // indirect
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e // indirect
github.com/sqlitebrowser/blackfriday v9.0.0+incompatible // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
)