kevburnsjr / microcache

A non-standard HTTP cache implemented as Go middleware
MIT License
155 stars 5 forks source link

Why use dep when vendoring is build into Go? #6

Closed erikdubbelboer closed 5 years ago

erikdubbelboer commented 5 years ago

Why not use the standard go.mod and go.sum that everyone is using these days? dep is old and deprecated.

You should probably also tag a proper semver version such as v1.0.0.

kevburnsjr commented 5 years ago

Because I run dep init and it just works.

I know go.mod is the new defacto I just haven't ever worked on a repository that uses it.

kevburnsjr commented 5 years ago

7 open to replace dep with mod

kevburnsjr commented 5 years ago

v1.0.0 tagged. https://github.com/kevburnsjr/microcache/releases/tag/v1.0.0

erikdubbelboer commented 5 years ago

Thanks 👍