go-paste/go.mod

66 lines
2.7 KiB
Modula-2
Raw Normal View History

2023-10-15 14:27:15 -06:00
module go.sour.is/paste
2020-03-23 19:26:27 -06:00
2023-10-19 17:05:41 -06:00
go 1.21
2020-03-23 19:26:27 -06:00
require (
2023-10-19 17:05:41 -06:00
github.com/andybalholm/brotli v1.0.4
2020-03-23 19:26:27 -06:00
github.com/docopt/docopt.go v0.0.0-20180111231733-ee0de3bc6815
github.com/gomarkdown/markdown v0.0.0-20200824053859-8c8b3816f167
2020-09-04 17:18:58 -06:00
github.com/gorilla/mux v1.8.0
github.com/h2non/filetype v1.1.0
2020-10-22 21:17:16 -06:00
github.com/hashicorp/golang-lru v0.5.1
github.com/lucasb-eyer/go-colorful v1.0.3
2020-09-04 17:18:58 -06:00
github.com/remyoudompheng/go-liblzma v0.0.0-20190506200333-81bf2d431b96
2020-10-17 10:32:03 -06:00
github.com/sour-is/crypto v0.0.0-20201016232853-f42a24ba5a81
2020-03-23 19:26:27 -06:00
github.com/sour-is/go-assetfs v1.0.0
2020-09-04 17:18:58 -06:00
github.com/spf13/viper v1.7.1
2020-10-30 11:08:04 -06:00
github.com/timshannon/badgerhold v1.0.0
2020-10-17 10:32:03 -06:00
github.com/tv42/zbase32 v0.0.0-20190604154422-aacc64a8f915
2023-10-14 07:54:05 -06:00
github.com/yeqown/go-qrcode/v2 v2.2.2
github.com/yeqown/go-qrcode/writer/standard v1.2.2
2020-10-22 21:17:16 -06:00
go.uber.org/ratelimit v0.1.0
2023-10-19 17:05:41 -06:00
golang.org/x/crypto v0.14.0
2023-10-14 07:54:05 -06:00
golang.org/x/sys v0.13.0
2020-09-04 17:18:58 -06:00
sour.is/x/toolbox v0.12.17
2020-03-23 19:26:27 -06:00
)
2023-10-19 17:05:41 -06:00
require (
github.com/99designs/gqlgen v0.17.34 // indirect
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/dgraph-io/badger v1.6.2 // indirect
github.com/dgraph-io/ristretto v0.0.3 // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/fogleman/gg v1.3.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/gddo v0.0.0-20200831202555-721e228c7686 // indirect
github.com/golang/protobuf v1.5.3 // indirect
2023-10-22 09:09:28 -06:00
github.com/google/go-cmp v0.5.9 // indirect
2023-10-19 17:05:41 -06:00
github.com/hashicorp/hcl v1.0.0 // indirect
2023-10-22 09:09:28 -06:00
github.com/kr/pretty v0.3.1 // indirect
2023-10-19 17:05:41 -06:00
github.com/magiconair/properties v1.8.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
2023-10-22 09:09:28 -06:00
github.com/rogpeppe/go-internal v1.10.0 // indirect
2023-10-19 17:05:41 -06:00
github.com/spf13/afero v1.3.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
2023-10-22 09:09:28 -06:00
github.com/stretchr/testify v1.8.4 // indirect
2023-10-19 17:05:41 -06:00
github.com/subosito/gotenv v1.2.0 // indirect
github.com/vektah/gqlparser/v2 v2.5.6 // indirect
github.com/yeqown/reedsolomon v1.0.0 // indirect
github.com/yosssi/gmq v0.0.1 // indirect
golang.org/x/image v0.5.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
2023-10-22 09:09:28 -06:00
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
2023-10-19 17:05:41 -06:00
gopkg.in/ini.v1 v1.57.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)