mirror of
https://github.com/mudler/luet.git
synced 2025-08-30 21:52:10 +00:00
Instead of using gox on one side and an action to release, we can merge them together with goreleaser which will build for extra targets (arm, mips if needed in the future) and it also takes care of creating checksums, a source archive, and a changelog and creating a release with all the artifacts. All binaries should respect the old naming convention, so any scripts out there should still work. Signed-off-by: Itxaka <igarcia@suse.com>
33 lines
1.2 KiB
Modula-2
33 lines
1.2 KiB
Modula-2
module github.com/apex/log
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/apex/logs v1.0.0
|
|
github.com/aphistic/golf v0.0.0-20180712155816-02c07f170c5a
|
|
github.com/aphistic/sweet v0.2.0 // indirect
|
|
github.com/aws/aws-sdk-go v1.20.6
|
|
github.com/aybabtme/rgbterm v0.0.0-20170906152045-cc83f3b3ce59
|
|
github.com/fatih/color v1.7.0
|
|
github.com/go-logfmt/logfmt v0.4.0
|
|
github.com/golang/protobuf v1.3.1 // indirect
|
|
github.com/google/uuid v1.1.1 // indirect
|
|
github.com/jpillora/backoff v0.0.0-20180909062703-3050d21c67d7 // indirect
|
|
github.com/kr/pretty v0.2.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.2
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/rogpeppe/fastuuid v1.1.0
|
|
github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9 // indirect
|
|
github.com/smartystreets/gunit v1.0.0 // indirect
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/tj/assert v0.0.3
|
|
github.com/tj/go-buffer v1.1.0
|
|
github.com/tj/go-elastic v0.0.0-20171221160941-36157cbbebc2
|
|
github.com/tj/go-kinesis v0.0.0-20171128231115-08b17f58cb1b
|
|
github.com/tj/go-spin v1.1.0
|
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
|
|
golang.org/x/text v0.3.2 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
|
)
|