-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
57 lines (54 loc) · 2.11 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
module turbo_sched
go 1.21.5
require (
github.com/NVIDIA/go-nvml v0.12.4-0
github.com/creack/pty v1.1.21
github.com/dixonwille/wlog/v3 v3.0.4
github.com/emersion/go-appdir v1.1.2
github.com/failsafe-go/failsafe-go v0.6.6
github.com/google/uuid v1.6.0
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/hashicorp/go-grpc-net-conn v0.0.0-20230705205646-fe9b4af12ebb
github.com/jwalton/go-supportscolor v1.2.0
github.com/kopoli/go-terminal-size v0.0.0-20170219200355-5c97524c8b54
github.com/lmittmann/tint v1.0.5
github.com/ross96D/cancelreader v0.2.6
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.19.0
golang.org/x/sync v0.7.0
golang.org/x/term v0.22.0
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.34.2
gorm.io/datatypes v1.2.1
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.11
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/daviddengcn/go-colortext v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240723171418-e6d459c13d2a // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/driver/mysql v1.5.7 // indirect
)