-
Notifications
You must be signed in to change notification settings - Fork 0
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
e08fe60
commit ee262a8
Showing
3 changed files
with
103 additions
and
56 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
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,34 +1,34 @@ | ||
module github.com/kevincobain2000/go-app-reviews-scraper | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/JohannesKaufmann/html-to-markdown v1.3.4 | ||
github.com/PuerkitoBio/goquery v1.8.0 | ||
github.com/JohannesKaufmann/html-to-markdown v1.5.0 | ||
github.com/PuerkitoBio/goquery v1.9.0 | ||
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de | ||
github.com/headzoo/surf v1.0.1 | ||
github.com/joho/godotenv v1.4.0 | ||
github.com/kevincobain2000/go-msteams v0.0.0-20220607074626-79eff9de389e | ||
github.com/n0madic/google-play-scraper v0.0.0-20220607161459-8b86b7d3198d | ||
github.com/joho/godotenv v1.5.1 | ||
github.com/kevincobain2000/go-msteams v0.0.0-20231124044510-4369c04dd224 | ||
github.com/n0madic/google-play-scraper v0.0.0-20231014122808-52dbf3ade79b | ||
github.com/stretchr/testify v1.7.2 | ||
gorm.io/driver/mysql v1.3.4 | ||
gorm.io/driver/sqlite v1.3.2 | ||
gorm.io/gorm v1.23.5 | ||
gorm.io/driver/mysql v1.5.4 | ||
gorm.io/driver/sqlite v1.5.5 | ||
gorm.io/gorm v1.25.7 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/cascadia v1.3.1 // indirect | ||
github.com/andybalholm/cascadia v1.3.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-sql-driver/mysql v1.6.0 // indirect | ||
github.com/go-sql-driver/mysql v1.7.1 // indirect | ||
github.com/headzoo/ut v0.0.0-20181013193318-a13b5a7a02ca // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/k3a/html2text v1.0.8 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.12 // indirect | ||
github.com/k3a/html2text v1.2.1 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.22 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/tidwall/gjson v1.14.1 // indirect | ||
github.com/tidwall/gjson v1.17.1 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.0 // indirect | ||
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8 // indirect | ||
github.com/tidwall/pretty v1.2.1 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // 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