ETRI_SMARTFARM_POC/go.mod

44 lines
1.6 KiB
Modula-2
Raw Normal View History

2021-11-08 01:47:27 +00:00
module etrismartfarmpoc
go 1.17
require (
2021-11-16 12:28:52 +00:00
github.com/google/uuid v1.3.0
2021-11-08 01:47:27 +00:00
github.com/gorilla/mux v1.8.0
2021-11-16 12:28:52 +00:00
github.com/gorilla/websocket v1.4.2
github.com/plgd-dev/go-coap/v2 v2.4.0
2021-11-08 01:47:27 +00:00
github.com/urfave/negroni v1.0.0
2021-11-16 12:28:52 +00:00
gorm.io/driver/postgres v1.2.2
gorm.io/driver/sqlite v1.2.4
gorm.io/gorm v1.22.2
2021-11-08 01:47:27 +00:00
)
require (
2021-11-16 12:28:52 +00:00
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.10.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.8.1 // indirect
github.com/jackc/pgx/v4 v4.13.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
github.com/mattn/go-sqlite3 v1.14.9 // indirect
golang.org/x/text v0.3.7 // indirect
)
require (
github.com/dsnet/golib/memfile v0.0.0-20200723050859-c110804dfa93 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pion/dtls/v2 v2.0.1-0.20200503085337-8e86b3a7d585 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/pion/transport v0.10.0 // indirect
github.com/plgd-dev/kit v0.0.0-20200819113605-d5fcf3e94f63 // indirect
go.uber.org/atomic v1.6.0 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2021-11-08 01:47:27 +00:00
)