mirror of
https://github.com/ArvinLovegood/go-stock.git
synced 2025-07-19 00:00:09 +08:00
75 lines
3.1 KiB
Modula-2
75 lines
3.1 KiB
Modula-2
module go-stock
|
|
|
|
go 1.23
|
|
|
|
toolchain go1.23.0
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.10.1
|
|
github.com/coocood/freecache v1.2.4
|
|
github.com/duke-git/lancet/v2 v2.3.4
|
|
github.com/getlantern/systray v1.2.2
|
|
github.com/glebarez/sqlite v1.11.0
|
|
github.com/go-resty/resty/v2 v2.16.2
|
|
github.com/go-toast/toast v0.0.0-20190211030409-01e6764cf0a4
|
|
github.com/wailsapp/wails/v2 v2.9.2
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/text v0.21.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/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 // indirect
|
|
github.com/getlantern/errors v0.0.0-20190325191628-abdb3e3e36f7 // indirect
|
|
github.com/getlantern/golog v0.0.0-20190830074920-4ef2e798c2d7 // indirect
|
|
github.com/getlantern/hex v0.0.0-20190417191902-c6586a6fe0b7 // indirect
|
|
github.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55 // indirect
|
|
github.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f // indirect
|
|
github.com/glebarez/go-sqlite v1.21.2 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/go-stack/stack v1.8.0 // indirect
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
|
github.com/google/uuid v1.3.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/labstack/echo/v4 v4.10.2 // indirect
|
|
github.com/labstack/gommon v0.4.0 // indirect
|
|
github.com/leaanthony/go-ansi-parser v1.6.0 // indirect
|
|
github.com/leaanthony/gosod v1.0.3 // indirect
|
|
github.com/leaanthony/slicer v1.6.0 // indirect
|
|
github.com/leaanthony/u v1.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
|
|
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
|
|
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/samber/lo v1.38.1 // indirect
|
|
github.com/tkrajina/go-reflector v0.5.6 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
github.com/wailsapp/go-webview2 v1.0.16 // indirect
|
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
golang.org/x/crypto v0.31.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
|
|
golang.org/x/net v0.33.0 // indirect
|
|
golang.org/x/sys v0.28.0 // 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
|