fix: add basic JetStream management; bump: nats.go v1.12.3 (BREAKING to use with nack)

This commit is contained in:
jar3b
2021-09-29 14:37:13 +03:00
parent 5cf7a062b9
commit 1e18f34ee2
4 changed files with 122 additions and 52 deletions

22
go.mod
View File

@@ -1,11 +1,23 @@
module github.com/jar3b/nacl
go 1.16
go 1.17
require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/jar3b/grawt v0.1.10
github.com/nats-io/nats-streaming-server v0.22.0 // indirect
github.com/nats-io/nats.go v1.11.0
github.com/nats-io/stan.go v0.9.0
github.com/nats-io/nats.go v1.12.3
github.com/nats-io/stan.go v0.10.0
)
require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/nats-io/nats-server/v2 v2.6.1 // indirect
github.com/nats-io/nats-streaming-server v0.22.1 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/stretchr/testify v1.3.0 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
google.golang.org/protobuf v1.27.1 // indirect
)