-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f163bdf
commit 40f736b
Showing
3 changed files
with
67 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
module github.com/streambinder/unciae/audio/inflarics | ||
|
||
go 1.19 | ||
go 1.23 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/bogem/id3v2/v2 v2.1.4 | ||
github.com/gosimple/slug v1.13.1 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/streambinder/spotitube v1.0.9 | ||
github.com/gosimple/slug v1.15.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/streambinder/spotitube v1.0.12 | ||
) | ||
|
||
require ( | ||
github.com/PuerkitoBio/goquery v1.8.1 // indirect | ||
github.com/adrg/xdg v0.4.0 // indirect | ||
github.com/agnivade/levenshtein v1.1.1 // indirect | ||
github.com/andybalholm/cascadia v1.3.2 // indirect | ||
github.com/PuerkitoBio/goquery v1.10.0 // indirect | ||
github.com/adrg/xdg v0.5.3 // indirect | ||
github.com/agnivade/levenshtein v1.2.0 // indirect | ||
github.com/andybalholm/cascadia v1.3.3 // indirect | ||
github.com/arunsworld/nursery v0.6.0 // indirect | ||
github.com/gosimple/unidecode v1.0.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
go 1.20 | ||
go 1.23 | ||
|
||
toolchain go1.23.4 | ||
|
||
use ( | ||
./audio/inflarics | ||
|