2019-12-18 18:33:15 +01:00
|
|
|
module modernc.org/sqlite
|
2018-11-09 16:17:25 +01:00
|
|
|
|
2023-10-30 12:11:46 +01:00
|
|
|
go 1.19
|
2019-12-18 18:33:15 +01:00
|
|
|
|
2019-12-21 11:00:50 +01:00
|
|
|
require (
|
2022-11-23 10:26:21 +00:00
|
|
|
github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26
|
2023-02-10 11:22:03 +01:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.3
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
2023-10-30 12:11:46 +01:00
|
|
|
golang.org/x/sys v0.9.0
|
2023-07-01 16:17:25 +02:00
|
|
|
modernc.org/ccgo/v3 v3.16.13
|
2023-10-30 12:11:46 +01:00
|
|
|
modernc.org/libc v1.29.0
|
|
|
|
modernc.org/mathutil v1.6.0
|
2023-07-01 16:17:25 +02:00
|
|
|
modernc.org/tcl v1.15.2
|
2019-12-21 11:00:50 +01:00
|
|
|
)
|
2022-05-18 23:58:14 +03:00
|
|
|
|
2022-07-22 14:45:40 +02:00
|
|
|
require (
|
2023-04-17 14:34:20 +02:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2022-07-22 14:45:40 +02:00
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
2022-09-06 22:18:10 +02:00
|
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
2023-02-23 14:46:00 +01:00
|
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
2023-07-01 16:17:25 +02:00
|
|
|
golang.org/x/mod v0.3.0 // indirect
|
|
|
|
golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78 // indirect
|
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
2022-10-12 11:46:28 +02:00
|
|
|
lukechampine.com/uint128 v1.2.0 // indirect
|
2023-07-01 16:17:25 +02:00
|
|
|
modernc.org/cc/v3 v3.40.0 // indirect
|
2022-07-22 14:45:40 +02:00
|
|
|
modernc.org/httpfs v1.0.6 // indirect
|
2023-10-30 12:11:46 +01:00
|
|
|
modernc.org/memory v1.7.2 // indirect
|
2022-09-11 22:48:46 +02:00
|
|
|
modernc.org/opt v0.1.3 // indirect
|
2022-09-06 22:18:10 +02:00
|
|
|
modernc.org/strutil v1.1.3 // indirect
|
2023-07-01 16:17:25 +02:00
|
|
|
modernc.org/token v1.0.1 // indirect
|
2023-04-24 17:07:53 +02:00
|
|
|
modernc.org/z v1.7.3 // indirect
|
2022-07-22 14:45:40 +02:00
|
|
|
)
|
|
|
|
|
2022-05-18 23:58:14 +03:00
|
|
|
retract [v1.16.0, v1.17.2] // https://gitlab.com/cznic/sqlite/-/issues/100
|
2022-09-17 21:50:03 +02:00
|
|
|
|
|
|
|
retract v1.19.0 // module source tree too large (max size is 524288000 bytes)
|
2023-01-05 16:18:16 +01:00
|
|
|
|
|
|
|
retract v1.20.1 // https://gitlab.com/cznic/sqlite/-/issues/123
|