Files
apple-music-alac-atmos-down…/go.mod

46 lines
1.6 KiB
Modula-2
Raw Normal View History

2024-03-05 11:36:13 -03:00
module main
2025-01-15 15:34:20 +08:00
go 1.23.1
2024-03-05 11:36:13 -03:00
require (
2025-01-15 15:34:20 +08:00
github.com/aead/cmac v0.0.0-20160719120800-7af84192f0b1
2024-03-05 11:36:13 -03:00
github.com/grafov/m3u8 v0.11.1
2025-01-09 21:27:28 +08:00
github.com/schollz/progressbar/v3 v3.14.6
2024-09-06 00:05:13 +08:00
github.com/spf13/pflag v1.0.5
2025-01-15 15:34:20 +08:00
google.golang.org/protobuf v1.36.2
lukechampine.com/frand v1.5.1
2024-03-05 11:36:13 -03:00
)
require (
2025-09-29 14:17:37 +08:00
github.com/Eyevinn/mp4ff v0.50.0 // indirect
2025-09-18 01:29:22 +08:00
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
2025-09-18 01:29:22 +08:00
github.com/kr/text v0.2.0 // indirect
2025-02-15 02:07:26 +08:00
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
2025-02-13 15:44:04 +08:00
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
2025-09-18 01:29:22 +08:00
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
2025-09-18 01:29:22 +08:00
github.com/stretchr/testify v1.10.0 // indirect
golang.org/x/net v0.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/term v0.30.0 // indirect
golang.org/x/text v0.23.0 // indirect
2025-09-18 01:29:22 +08:00
golang.org/x/time v0.8.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
2024-04-24 01:02:04 +08:00
require (
github.com/AlecAivazis/survey/v2 v2.3.7
2024-09-06 00:05:13 +08:00
github.com/beevik/etree v1.3.0
2025-02-15 02:07:26 +08:00
github.com/fatih/color v1.18.0
2025-09-18 01:29:22 +08:00
github.com/go-resty/resty/v2 v2.16.5
2025-09-30 21:35:12 +08:00
github.com/itouakirai/mp4ff v0.0.0-20250930132656-98812935a1c7
2025-02-13 15:44:04 +08:00
github.com/olekukonko/tablewriter v0.0.5
github.com/zhaarey/go-mp4tag v0.0.0-20251021234435-2c70f6b1bf76
2024-04-28 09:33:00 +08:00
gopkg.in/yaml.v2 v2.2.8
2024-04-24 01:02:04 +08:00
)