-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
60 lines (56 loc) · 2.29 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
module github.com/stackup-app/stackup
go 1.21.0
toolchain go1.22.5
require (
github.com/blang/semver v3.5.1+incompatible
github.com/dotenv-org/godotenvvault v0.6.0
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203
github.com/gobwas/glob v0.2.3
github.com/joho/godotenv v1.5.1
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/nikoksr/notify v0.41.1
github.com/robertkrimen/otto v0.5.1
github.com/robfig/cron/v3 v3.0.1
github.com/slack-go/slack v0.15.0
github.com/stretchr/testify v1.10.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible // indirect
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4 // indirect
github.com/goccy/go-json v0.10.4 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
github.com/minio/md5-simd v1.1.2 // indirect
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rs/xid v1.6.0 // indirect
github.com/tadvi/systray v0.0.0-20190226123456-11a2b8fa57af // indirect
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/denisbrodbeck/machineid v1.0.1
github.com/emirpasic/gods v1.18.1
github.com/gen2brain/beeep v0.0.0-20230602101333-f384c29b62dd
github.com/golang-module/carbon/v2 v2.4.1
github.com/kr/pretty v0.3.1 // indirect
github.com/minio/minio-go v6.0.14+incompatible
github.com/minio/minio-go/v7 v7.0.83
github.com/posthog/posthog-go v0.0.0-20230801140217-d607812dee69
go.etcd.io/bbolt v1.3.11
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)