-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
54 lines (51 loc) · 2.12 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
module github.com/l1ghthouse/northstar-bootstrap
go 1.17
require (
github.com/bramvdbogaerde/go-scp v1.2.0
github.com/bwmarrin/discordgo v0.25.0
github.com/gofrs/uuid v4.2.0+incompatible
github.com/google/go-github/v42 v42.0.0
github.com/imdario/mergo v0.3.13
github.com/jinzhu/configor v1.2.1
github.com/lucasepe/codename v0.2.0
github.com/paulbellamy/ratecounter v0.2.0
github.com/sethvargo/go-password v0.2.0
github.com/vultr/govultr/v2 v2.17.2
go.mongodb.org/mongo-driver v1.10.2
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
gorm.io/datatypes v1.0.5
gorm.io/driver/sqlite v1.2.6
gorm.io/gorm v1.22.5
)
require (
al.essio.dev/pkg/shellescape v1.5.0 // indirect
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.4 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/mattn/go-sqlite3 v1.14.11 // indirect
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.1 // indirect
github.com/xdg-go/stringprep v1.0.3 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/yaml.v2 v2.2.3 // indirect
gorm.io/driver/mysql v1.2.2 // indirect
gorm.io/driver/postgres v1.2.3 // indirect
gorm.io/driver/sqlserver v1.2.1 // indirect
)