2018-11-22 14:48:53 -08:00
|
|
|
module github.com/mxpv/podsync
|
|
|
|
|
|
2024-03-31 14:27:45 -07:00
|
|
|
go 1.21
|
|
|
|
|
|
2018-11-22 14:48:53 -08:00
|
|
|
require (
|
|
|
|
|
github.com/BrianHicks/finch v0.0.0-20140409222414-419bd73c29ec
|
2022-11-23 01:33:30 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.44.144
|
2021-12-31 12:54:30 +02:00
|
|
|
github.com/dgraph-io/badger v1.6.2
|
2020-04-18 23:14:49 +03:00
|
|
|
github.com/eduncan911/podcast v1.4.2
|
2020-04-15 13:59:30 -07:00
|
|
|
github.com/gilliek/go-opml v1.0.0
|
2021-12-31 11:19:19 +00:00
|
|
|
github.com/golang/mock v1.6.0
|
2021-12-31 10:50:42 +00:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2021-12-31 13:11:09 +02:00
|
|
|
github.com/jessevdk/go-flags v1.5.0
|
2022-04-22 01:25:54 +00:00
|
|
|
github.com/pelletier/go-toml v1.9.5
|
2020-04-18 23:14:49 +03:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-02-09 02:51:30 +03:00
|
|
|
github.com/robfig/cron/v3 v3.0.1
|
2019-03-24 20:16:11 -07:00
|
|
|
github.com/silentsokolov/go-vimeo v0.0.0-20190116124215-06829264260c
|
2023-06-05 02:01:54 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2024-03-04 01:48:55 +00:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2022-09-23 01:34:17 +00:00
|
|
|
github.com/zackradisic/soundcloud-api v0.1.8
|
2024-04-19 16:59:27 +00:00
|
|
|
golang.org/x/oauth2 v0.19.0
|
2024-04-05 01:35:47 +00:00
|
|
|
golang.org/x/sync v0.7.0
|
2018-11-22 14:48:53 -08:00
|
|
|
google.golang.org/api v0.0.0-20180718221112-efcb5f25ac56
|
2023-02-07 01:06:44 +00:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
2018-11-22 14:48:53 -08:00
|
|
|
)
|
2019-10-26 22:43:30 -07:00
|
|
|
|
2024-03-31 14:27:45 -07:00
|
|
|
require (
|
|
|
|
|
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
|
|
|
|
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
|
github.com/dgraph-io/ristretto v0.0.2 // indirect
|
|
|
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
|
github.com/grafov/m3u8 v0.11.1 // indirect
|
|
|
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2024-04-19 09:58:20 -07:00
|
|
|
golang.org/x/net v0.23.0 // indirect
|
|
|
|
|
golang.org/x/sys v0.18.0 // indirect
|
2024-04-01 00:56:40 +00:00
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2024-03-31 14:27:45 -07:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
|
)
|