2026-05-14 16:26:47 +00:00
|
|
|
module source.gleipnir.technology/Gleipnir/jet
|
2020-06-27 18:48:19 +02:00
|
|
|
|
2026-03-23 10:41:10 -03:00
|
|
|
go 1.24.0
|
2025-04-18 12:37:11 +02:00
|
|
|
|
2024-11-01 12:34:46 +01: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
|
2024-02-07 21:22:43 +00:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-11-01 12:34:46 +01:00
|
|
|
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
|
|
|
)
|
|
|
|
|
|
2024-11-01 12:34:46 +01:00
|
|
|
// used in tests
|
2022-05-13 14:49:11 +02:00
|
|
|
require (
|
2025-02-21 21:17:24 +00:00
|
|
|
github.com/google/go-cmp v0.7.0
|
2026-03-23 10:41:10 -03:00
|
|
|
github.com/stretchr/testify v1.11.1
|
2020-06-27 18:48:19 +02:00
|
|
|
)
|
2024-01-31 15:30:09 +01:00
|
|
|
|
|
|
|
|
require (
|
2026-05-03 12:10:07 +02:00
|
|
|
filippo.io/edwards25519 v1.2.0 // indirect
|
2024-01-31 15:30:09 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
2026-03-23 10:41:10 -03:00
|
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
2026-04-04 19:27:20 +02:00
|
|
|
github.com/kr/pretty v0.3.0 // indirect
|
2024-01-31 15:30:09 +01:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2026-03-23 10:41:10 -03:00
|
|
|
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
|
2026-04-04 19:27:20 +02:00
|
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
2024-01-31 15:30:09 +01:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
|
)
|