mirror of
https://github.com/ArvinLovegood/go-stock.git
synced 2025-07-19 00:00:09 +08:00
86 lines
3.4 KiB
Modula-2
86 lines
3.4 KiB
Modula-2
module go-stock
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.10.1
|
|
github.com/chromedp/chromedp v0.11.2
|
|
github.com/coocood/freecache v1.2.4
|
|
github.com/duke-git/lancet/v2 v2.3.4
|
|
github.com/energye/systray v1.0.2
|
|
github.com/glebarez/sqlite v1.11.0
|
|
github.com/go-ego/gse v0.80.3
|
|
github.com/go-resty/resty/v2 v2.16.2
|
|
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4
|
|
github.com/robertkrimen/otto v0.5.1
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/samber/lo v1.49.1
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/tidwall/gjson v1.14.2
|
|
github.com/wailsapp/wails/v2 v2.10.1
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/sys v0.31.0
|
|
golang.org/x/text v0.23.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
gorm.io/gorm v1.25.12
|
|
gorm.io/plugin/dbresolver v1.5.3
|
|
gorm.io/plugin/soft_delete v1.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
|
github.com/bep/debounce v1.2.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/chromedp/cdproto v0.0.0-20241022234722-4d5d5faf59fb // indirect
|
|
github.com/chromedp/sysutil v1.1.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/glebarez/go-sqlite v1.21.2 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
github.com/gobwas/ws v1.4.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/labstack/echo/v4 v4.13.3 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/leaanthony/go-ansi-parser v1.6.1 // indirect
|
|
github.com/leaanthony/gosod v1.0.4 // indirect
|
|
github.com/leaanthony/slicer v1.6.0 // indirect
|
|
github.com/leaanthony/u v1.1.1 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/tevino/abool v0.0.0-20220530134649-2bfc934cb23c // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
github.com/tkrajina/go-reflector v0.5.8 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
github.com/vcaesar/cedar v0.20.2 // indirect
|
|
github.com/wailsapp/go-webview2 v1.0.19 // indirect
|
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
golang.org/x/crypto v0.36.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
|
|
golang.org/x/net v0.38.0 // indirect
|
|
gopkg.in/sourcemap.v1 v1.0.5 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
modernc.org/libc v1.22.5 // indirect
|
|
modernc.org/mathutil v1.5.0 // indirect
|
|
modernc.org/memory v1.5.0 // indirect
|
|
modernc.org/sqlite v1.23.1 // indirect
|
|
)
|
|
|
|
// replace github.com/wailsapp/wails/v2 v2.9.2 => C:\Users\spark\go\pkg\mod
|