2019-10-22 16:36:54 +00:00
|
|
|
module dev.narayana.im/narayana/telegabber
|
|
|
|
|
2023-06-11 17:53:36 +00:00
|
|
|
go 1.19
|
2019-10-22 16:36:54 +00:00
|
|
|
|
|
|
|
require (
|
2023-06-11 17:53:36 +00:00
|
|
|
github.com/dgraph-io/badger/v4 v4.1.0
|
2023-06-03 04:20:03 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2019-10-25 18:12:38 +00:00
|
|
|
github.com/santhosh-tekuri/jsonschema v1.2.4
|
2019-11-03 22:15:43 +00:00
|
|
|
github.com/sirupsen/logrus v1.4.2
|
2019-11-14 20:11:04 +00:00
|
|
|
github.com/soheilhy/args v0.0.0-20150720134047-6bcf4c78e87e
|
2022-01-17 20:45:40 +00:00
|
|
|
github.com/zelenin/go-tdlib v0.5.2
|
2019-10-22 16:36:54 +00:00
|
|
|
gopkg.in/yaml.v2 v2.2.4
|
2021-12-18 16:04:24 +00:00
|
|
|
gosrc.io/xmpp v0.5.2-0.20211214110136-5f99e1cd06e1
|
2019-10-22 16:36:54 +00:00
|
|
|
)
|
2019-11-06 23:23:41 +00:00
|
|
|
|
2023-06-11 17:53:36 +00:00
|
|
|
require (
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
|
|
github.com/dgraph-io/ristretto v0.1.1 // indirect
|
|
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
|
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
|
|
|
|
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
|
|
|
|
github.com/golang/protobuf v1.3.2 // indirect
|
|
|
|
github.com/golang/snappy v0.0.3 // indirect
|
|
|
|
github.com/google/flatbuffers v1.12.1 // indirect
|
|
|
|
github.com/google/uuid v1.1.1 // indirect
|
|
|
|
github.com/klauspost/compress v1.12.3 // indirect
|
|
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
|
|
|
|
go.opencensus.io v0.22.5 // indirect
|
|
|
|
golang.org/x/net v0.7.0 // indirect
|
|
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
|
|
nhooyr.io/websocket v1.6.5 // indirect
|
|
|
|
)
|
|
|
|
|
2022-05-26 11:14:38 +00:00
|
|
|
replace gosrc.io/xmpp => dev.narayana.im/narayana/go-xmpp v0.0.0-20220524203317-306b4ff58e8f
|
2023-08-01 01:25:24 +00:00
|
|
|
replace github.com/zelenin/go-tdlib => dev.narayana.im/narayana/go-tdlib v0.0.0-20230730021136-47da33180615
|