-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the dependency on jsm.go that is causing dependency problems
Signed-off-by: R.I.Pienaar <rip@devco.net>
- Loading branch information
Showing
3 changed files
with
31 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
module github.com/synadia-io/jwt-auth-builder.go | ||
|
||
go 1.22 | ||
go 1.22.0 | ||
|
||
require ( | ||
github.com/nats-io/jsm.go v0.1.2 | ||
github.com/nats-io/jwt/v2 v2.7.3 | ||
github.com/nats-io/nats-server/v2 v2.11.0-preview.2 | ||
github.com/nats-io/nats.go v1.37.0 | ||
github.com/nats-io/nats.go v1.38.0 | ||
github.com/nats-io/nkeys v0.4.9 | ||
github.com/nats-io/nsc/v2 v2.10.0 | ||
github.com/nats-io/nsc/v2 v2.10.2 | ||
github.com/nats-io/nuid v1.0.1 | ||
github.com/stretchr/testify v1.10.0 | ||
github.com/synadia-io/orbit.go/natscontext v0.1.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/go-tpm v0.9.1 // indirect | ||
github.com/google/go-tpm v0.9.3 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/minio/highwayhash v1.0.3 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.31.0 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/time v0.8.0 // indirect | ||
golang.org/x/time v0.9.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters