2020-10-06 01:07:09 +08:00
|
|
|
module github.com/owncast/owncast
|
2020-05-23 17:57:49 -07:00
|
|
|
|
2023-03-24 12:50:52 -07:00
|
|
|
go 1.20
|
2020-05-23 17:57:49 -07:00
|
|
|
|
|
|
|
require (
|
2023-06-20 21:07:28 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.44.286
|
2022-01-12 13:53:10 -08:00
|
|
|
github.com/go-fed/activity v1.0.1-0.20210803212804-d866ba75dd0f
|
|
|
|
github.com/go-fed/httpsig v1.1.0
|
|
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
2022-02-16 08:43:13 -08:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
2023-04-09 17:27:31 +00:00
|
|
|
github.com/grafov/m3u8 v0.12.0
|
2021-05-23 00:02:05 -07:00
|
|
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
2023-06-01 04:58:13 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.17
|
2023-05-20 07:12:46 +00:00
|
|
|
github.com/microcosm-cc/bluemonday v1.0.24
|
2022-03-14 14:38:55 +00:00
|
|
|
github.com/nareix/joy5 v0.0.0-20210317075623-2c912ca30590
|
2022-08-10 03:38:34 +00:00
|
|
|
github.com/oschwald/geoip2-golang v1.8.0
|
2021-05-23 00:02:05 -07:00
|
|
|
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
|
2021-10-21 09:32:52 -07:00
|
|
|
github.com/schollz/sqlite3dump v1.3.1
|
2023-06-03 22:53:36 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2022-07-18 22:00:15 +00:00
|
|
|
github.com/teris-io/shortid v0.0.0-20220617161101-71ec9f2aa569
|
2023-02-04 13:46:07 +00:00
|
|
|
github.com/yuin/goldmark v1.5.4
|
2023-04-17 22:38:17 +00:00
|
|
|
golang.org/x/mod v0.10.0
|
2022-12-04 23:47:52 +00:00
|
|
|
golang.org/x/time v0.3.0
|
2020-05-23 17:57:49 -07:00
|
|
|
)
|
2021-10-11 14:56:00 -07:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/jonboulle/clockwork v0.2.2 // indirect
|
|
|
|
github.com/lestrrat-go/strftime v1.0.4 // indirect
|
|
|
|
github.com/mvdan/xurls v1.1.0 // indirect
|
2022-01-12 13:53:10 -08:00
|
|
|
github.com/pkg/errors v0.9.1
|
2022-12-04 21:19:51 +00:00
|
|
|
github.com/tklauser/go-sysconf v0.3.11 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.6.0 // indirect
|
2023-06-20 18:21:12 +00:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.3 // indirect
|
2022-10-27 10:40:15 +00:00
|
|
|
golang.org/x/crypto v0.1.0 // indirect
|
2023-05-18 10:25:31 +00:00
|
|
|
golang.org/x/net v0.10.0
|
|
|
|
golang.org/x/sys v0.8.0 // indirect
|
2022-03-06 17:26:52 -08:00
|
|
|
)
|
|
|
|
|
2023-05-06 09:27:19 +00:00
|
|
|
require github.com/prometheus/client_golang v1.15.1
|
2022-03-06 17:26:52 -08:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-04-17 10:08:04 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2023-05-30 10:31:43 -07:00
|
|
|
github.com/klauspost/compress v1.16.4 // indirect
|
2022-03-07 08:45:49 -08:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
2023-04-17 10:08:04 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2022-03-07 08:45:49 -08:00
|
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
2022-11-12 12:07:34 -08:00
|
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
2023-04-17 10:08:04 +00:00
|
|
|
github.com/prometheus/common v0.42.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
2023-04-18 01:01:11 +00:00
|
|
|
golang.org/x/text v0.9.0 // indirect
|
2023-04-17 10:08:04 +00:00
|
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
2021-10-11 14:56:00 -07:00
|
|
|
)
|
2022-01-12 13:53:10 -08:00
|
|
|
|
2022-03-07 08:45:49 -08:00
|
|
|
require (
|
2023-03-24 11:59:10 +00:00
|
|
|
github.com/nakabonne/tstorage v0.3.6
|
2023-06-20 18:21:12 +00:00
|
|
|
github.com/shirou/gopsutil/v3 v3.23.5
|
2022-03-07 08:45:49 -08:00
|
|
|
)
|
2022-03-06 19:43:57 -08:00
|
|
|
|
2022-03-28 20:22:03 +00:00
|
|
|
require github.com/SherClockHolmes/webpush-go v1.2.0
|
2022-03-18 13:33:23 -07:00
|
|
|
|
|
|
|
require (
|
2023-02-27 01:49:17 +05:30
|
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
2022-03-18 13:33:23 -07:00
|
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
|
|
|
github.com/go-test/deep v1.0.4 // indirect
|
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
|
|
github.com/gorilla/css v1.0.0 // indirect
|
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
2022-08-10 03:38:34 +00:00
|
|
|
github.com/oschwald/maxminddb-golang v1.10.0 // indirect
|
2023-06-20 18:21:12 +00:00
|
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
2022-03-18 13:33:23 -07:00
|
|
|
)
|
|
|
|
|
2022-10-12 23:44:54 +00:00
|
|
|
require (
|
2023-02-27 01:49:17 +05:30
|
|
|
github.com/CAFxX/httpcompression v0.0.8
|
2023-04-19 20:44:43 +00:00
|
|
|
github.com/andybalholm/cascadia v1.3.2
|
2022-10-12 23:44:54 +00:00
|
|
|
gopkg.in/evanphx/json-patch.v5 v5.6.0
|
2022-12-23 13:31:30 -08:00
|
|
|
mvdan.cc/xurls v1.1.0
|
2022-10-12 23:44:54 +00:00
|
|
|
)
|
2022-04-21 14:55:26 -07:00
|
|
|
|
2022-01-12 13:53:10 -08:00
|
|
|
replace github.com/go-fed/activity => github.com/owncast/activity v1.0.1-0.20211229051252-7821289d4026
|