Chore/update golang to 1.24 + add riscv64 support (#40)

* chg: chore: bump golang and deps

* chg: chore: add riscv64 support

* chg: chore: update goreleaser

* chg: chore: disable cgo

* chg: chore: tidy up deps

* chg: chore: add build tags
This commit is contained in:
2025-07-29 13:22:21 -03:00
committed by GitHub
parent d9141c8df7
commit 4d6cfb8668
8 changed files with 135 additions and 57 deletions

14
consts/version.go Normal file
View File

@@ -0,0 +1,14 @@
package consts
// These will be injected via -ldflags at build time
var (
gitSha string = "unknown"
gitTag string = "unknown"
)
func GetBuildInfo() map[string]string {
return map[string]string{
"revision": gitSha,
"version": gitTag,
}
}