jet/go.mod

33 lines
920 B
Modula-2
Raw Normal View History

module source.gleipnir.technology/Gleipnir/jet/v2
2020-06-27 18:48:19 +02:00
go 1.24.0
2025-04-18 12:37:11 +02:00
// used by jet generator
2020-06-27 18:48:19 +02:00
require (
2026-05-03 12:10:07 +02:00
github.com/go-sql-driver/mysql v1.10.0
github.com/google/uuid v1.6.0
github.com/jackc/pgtype v1.14.4
2026-05-03 12:10:07 +02:00
github.com/lib/pq v1.12.3
github.com/mattn/go-sqlite3 v1.14.44
2022-05-13 14:49:11 +02:00
)
// used in tests
2022-05-13 14:49:11 +02:00
require (
github.com/google/go-cmp v0.7.0
github.com/stretchr/testify v1.11.1
2020-06-27 18:48:19 +02:00
)
require (
2026-05-03 12:10:07 +02:00
filippo.io/edwards25519 v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
2026-05-03 12:10:07 +02:00
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/text v0.31.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)