Skip to content

Commit

Permalink
Update go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshine69 committed Feb 24, 2024
1 parent c95662d commit d0bc015
Show file tree
Hide file tree
Showing 2 changed files with 184 additions and 13 deletions.
67 changes: 54 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,75 @@ go 1.19
require (
github.com/alecthomas/chroma v0.10.0
github.com/cjoudrey/gluahttp v0.0.0-20201111170219-25003d9adfa9
github.com/gomarkdown/markdown v0.0.0-20230322041520-c84983bdbf2a
github.com/gotk3/gotk3 v0.6.1
github.com/gomarkdown/markdown v0.0.0-20231222211730-1d6d20845b47
github.com/gotk3/gotk3 v0.6.3
github.com/jinzhu/gorm v1.9.16
github.com/kohkimakimoto/gluayaml v0.0.0-20160815032708-6fe413d49d73
github.com/linuxerwang/sourceview3 v0.1.1
github.com/otiai10/copy v1.11.0
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
github.com/otiai10/copy v1.14.0
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/sunshine69/gluare v0.0.0-20170607022532-d7c94f1a80ed
github.com/sunshine69/golang-tools/utils v0.0.0-20230313013247-5ca2b5508cb1
github.com/sunshine69/golang-tools/utils v0.0.0-20230903080424-1e5144ab4f87
github.com/sunshine69/gopher-json v0.0.0-20221024001855-6c6de212e5bf
github.com/yuin/gopher-lua v1.1.0
golang.org/x/net v0.9.0
github.com/yuin/gopher-lua v1.1.1
golang.org/x/net v0.21.0
)

require (
github.com/dlclark/regexp2 v1.9.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
github.com/chzyer/logex v1.2.1 // indirect
github.com/chzyer/readline v1.5.1 // indirect
github.com/chzyer/test v1.0.0 // indirect
github.com/creack/pty v1.1.21 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denisenkom/go-mssqldb v0.12.3 // indirect
github.com/dlclark/regexp2 v1.10.0 // indirect
github.com/dnaeon/go-vcr v1.2.0 // indirect
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/golang-jwt/jwt/v5 v5.2.0 // indirect
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/h2non/filetype v1.1.3 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5 // indirect
github.com/montanaflynn/stats v0.7.1 // indirect
github.com/mutecomm/go-sqlcipher/v4 v4.4.2 // indirect
github.com/otiai10/mint v1.6.3 // indirect
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/sendgrid/rest v2.6.9+incompatible // indirect
github.com/sendgrid/sendgrid-go v3.12.0+incompatible // indirect
github.com/stvoidit/gosmtp v1.0.6 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/sys v0.7.0 // indirect
github.com/sendgrid/sendgrid-go v3.14.0+incompatible // indirect
github.com/stretchr/objx v0.5.1 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/stvoidit/gosmtp v1.0.7 // indirect
github.com/yuin/goldmark v1.7.0 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/telemetry v0.0.0-20240222153655-3df865e588ac // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.18.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit d0bc015

Please sign in to comment.