-
Notifications
You must be signed in to change notification settings - Fork 711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split dev dependencies into separate modules #1788
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Piotr Piotrowski <[email protected]>
7a7ba0c
to
d00aaba
Compare
Signed-off-by: Piotr Piotrowski <[email protected]>
d00aaba
to
3428b6e
Compare
github.com/nats-io/nkeys v0.4.9 | ||
github.com/nats-io/nuid v1.0.1 | ||
golang.org/x/text v0.21.0 | ||
google.golang.org/protobuf v1.36.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would this one be needed if we put a go.mod
under encoders
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really under encoders - enc.go
imports encoders/builtin
, so even if we put it in a separate module, it would have to be added to root go.mod (with protobuf as an indirect dependency), so does not make sense.
We could in theory make encoders/protobuf
a separate module but then we'd have to release and version it separately, not sure it's a good solution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah I see, thanks for checking
Signed-off-by: Piotr Piotrowski [email protected]