-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from mbssrc/refactor-go
Update flake, refactor go code, add build flags
- Loading branch information
Showing
45 changed files
with
842 additions
and
1,203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
module givc | ||
|
||
go 1.21.4 | ||
go 1.22 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/coreos/go-systemd/v22 v22.5.0 | ||
github.com/go-ozzo/ozzo-validation/v4 v4.3.0 | ||
github.com/godbus/dbus/v5 v5.1.0 | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 | ||
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 | ||
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.2.0 | ||
github.com/shirou/gopsutil v3.21.11+incompatible | ||
github.com/sirupsen/logrus v1.9.3 | ||
golang.org/x/net v0.29.0 | ||
golang.org/x/sync v0.8.0 | ||
google.golang.org/grpc v1.66.2 | ||
google.golang.org/protobuf v1.34.2 | ||
golang.org/x/net v0.34.0 | ||
golang.org/x/sync v0.10.0 | ||
google.golang.org/grpc v1.69.2 | ||
google.golang.org/protobuf v1.36.1 | ||
) | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/tklauser/go-sysconf v0.3.14 // indirect | ||
github.com/tklauser/numcpus v0.8.0 // indirect | ||
github.com/tklauser/numcpus v0.9.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.