hmn/go.mod

42 lines
1.6 KiB
Modula-2
Raw Permalink Normal View History

2021-03-09 08:05:07 +00:00
module git.handmade.network/hmn/hmn
go 1.16
require (
2021-03-14 20:49:58 +00:00
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/alecthomas/chroma v0.9.2
2021-08-21 16:15:27 +00:00
github.com/aws/aws-sdk-go-v2 v1.8.1
github.com/aws/aws-sdk-go-v2/config v1.6.1
github.com/aws/aws-sdk-go-v2/credentials v1.3.3
github.com/aws/aws-sdk-go-v2/service/s3 v1.13.0
github.com/aws/smithy-go v1.7.0
github.com/frustra/bbcode v0.0.0-20201127003707-6ef347fbe1c8
2021-03-11 00:49:14 +00:00
github.com/go-stack/stack v1.8.0
2021-06-22 09:50:40 +00:00
github.com/google/uuid v1.2.0
github.com/gorilla/websocket v1.4.2
2021-03-14 20:49:58 +00:00
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.12 // indirect
2021-06-22 09:50:40 +00:00
github.com/jackc/pgconn v1.8.0
github.com/jackc/pgtype v1.6.2
2021-03-09 08:05:07 +00:00
github.com/jackc/pgx/v4 v4.10.1
github.com/jpillora/backoff v1.0.0
2021-03-14 20:49:58 +00:00
github.com/mitchellh/copystructure v1.1.1 // indirect
github.com/rs/zerolog v1.21.0
2021-03-11 00:49:14 +00:00
github.com/spf13/cobra v1.1.3
github.com/stretchr/testify v1.7.0
2021-07-23 03:09:46 +00:00
github.com/tcolgate/mp3 v0.0.0-20170426193717-e79c5a46d300
github.com/teacat/noire v1.1.0
2021-03-11 04:19:37 +00:00
github.com/wellington/go-libsass v0.9.2
github.com/yuin/goldmark v1.4.1
github.com/yuin/goldmark-highlighting v0.0.0-20210516132338-9216f9c5aa01
2021-03-26 03:33:00 +00:00
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
2021-07-23 03:09:46 +00:00
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d
2021-03-09 08:05:07 +00:00
)
replace (
github.com/frustra/bbcode v0.0.0-20201127003707-6ef347fbe1c8 => github.com/HandmadeNetwork/bbcode v0.0.0-20210623031351-ec0e2e2e39d9
github.com/yuin/goldmark v1.4.1 => github.com/HandmadeNetwork/goldmark v1.4.1-0.20210707024600-f7e596e26b5e
)