1
0
mirror of https://github.com/nxshock/gron.git synced 2024-11-27 03:41:00 +05:00
gron/go.mod

38 lines
1.3 KiB
Modula-2
Raw Normal View History

2022-03-27 12:43:57 +05:00
module github.com/nxshock/gron
2022-03-26 13:23:39 +05:00
go 1.18
require (
2023-08-14 14:29:24 +05:00
github.com/BurntSushi/toml v1.3.2
2022-03-26 13:23:39 +05:00
github.com/antonfisher/nested-logrus-formatter v1.3.1
2023-05-15 21:10:30 +05:00
github.com/creasty/defaults v1.7.0
2022-10-13 20:30:33 +05:00
github.com/denisenkom/go-mssqldb v0.12.3
2022-11-20 14:44:03 +05:00
github.com/gorilla/websocket v1.5.0
2022-05-10 19:44:41 +05:00
github.com/jackc/pgx v3.6.2+incompatible
2022-05-21 20:25:06 +05:00
github.com/nxshock/logwriter v0.0.0-20220514172136-b1385d4106de
2022-03-26 13:23:39 +05:00
github.com/robfig/cron/v3 v3.0.1
2023-08-19 14:57:33 +05:00
github.com/sijms/go-ora/v2 v2.7.14
2023-08-14 14:29:24 +05:00
github.com/sirupsen/logrus v1.9.3
2022-08-07 21:24:54 +05:00
github.com/stretchr/testify v1.8.0
2022-03-26 13:23:39 +05:00
)
require (
2022-05-10 19:44:41 +05:00
github.com/cockroachdb/apd v1.1.0 // indirect
2022-03-26 13:23:39 +05:00
github.com/davecgh/go-spew v1.1.1 // indirect
2022-08-07 21:24:54 +05:00
github.com/gofrs/uuid v4.2.0+incompatible // indirect
2022-05-10 19:44:41 +05:00
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
2022-05-21 20:25:06 +05:00
github.com/golang-sql/sqlexp v0.1.0 // indirect
2022-05-10 19:44:41 +05:00
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
2022-10-23 10:23:35 +05:00
github.com/kardianos/service v1.2.2
2022-08-07 21:24:54 +05:00
github.com/kr/pretty v0.3.0 // indirect
github.com/lib/pq v1.10.6 // indirect
2022-05-10 19:44:41 +05:00
github.com/pkg/errors v0.9.1 // indirect
2022-03-26 13:23:39 +05:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2022-08-07 21:24:54 +05:00
github.com/shopspring/decimal v1.3.1 // indirect
2023-08-14 14:29:24 +05:00
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
2022-08-07 21:24:54 +05:00
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2022-03-26 13:23:39 +05:00
)