34 lines
1.1 KiB
Modula-2
Raw Normal View History

module gitlab.com/offline-twitter/twitter_offline_engine
2021-05-17 14:45:48 -04:00
go 1.21
2021-07-24 12:36:39 -07:00
require (
github.com/Masterminds/sprig/v3 v3.2.3
2023-08-03 12:46:24 -03:00
github.com/andybalholm/cascadia v1.3.2
github.com/go-test/deep v1.0.7
2023-11-26 21:25:04 -08:00
github.com/google/uuid v1.1.1
github.com/jarcoal/httpmock v1.1.0
2022-03-06 19:17:43 -08:00
github.com/jmoiron/sqlx v1.3.4
2021-07-24 12:36:39 -07:00
github.com/mattn/go-sqlite3 v1.14.7
github.com/sirupsen/logrus v1.8.1
2022-01-30 14:48:16 -08:00
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.9.0
2023-08-03 12:46:24 -03:00
golang.org/x/term v0.7.0
2021-07-24 12:36:39 -07:00
)
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/reflectwalk v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.2.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
golang.org/x/crypto v0.3.0 // indirect
golang.org/x/sys v0.7.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)