This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
48 lines (45 loc) · 1.93 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
module github.com/defsub/takeout
replace github.com/willf/bitset => github.com/bits-and-blooms/bitset v1.2.0
require (
github.com/RoaringBitmap/roaring v0.6.1 // indirect
github.com/alessio/shellescape v1.4.1 // indirect
github.com/aws/aws-sdk-go v1.38.43
github.com/blevesearch/bleve/v2 v2.0.3
github.com/bmizerany/pat v0.0.0-20210406213842-e4b6760bdd6f
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-co-op/gocron v1.11.0
github.com/gobwas/ws v1.1.0
github.com/gokyle/filecache v0.0.0-20220803205700-e8a4791094b7
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/uuid v1.2.0
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
github.com/kr/pretty v0.3.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.9.1 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/shkh/lastfm-go v0.0.0-20191215035245-89a801c244e0
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.1.3
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.2 // indirect
github.com/willf/bitset v1.2.0 // indirect
golang.org/x/crypto v0.17.0
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
gorm.io/driver/mysql v1.3.3
gorm.io/driver/postgres v1.3.5
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.23.4
)
go 1.16