Closed
Description
This may be completely incompatible with Go's architecture, but I'm putting it out there as a request for comments :)
Basically, make this work:
09:56 $ cat go.mod
module github.com/my/repo
go 1.13
replace (
crypto/tls => ./third_party/crypto/tls
)
This would allow for forking standard libraries without requiring users to use a forked version of Go. In my case, I've implemented #22836 and would like to use it in my project without maintaining a full Go fork.
What version of Go are you using (go version
)?
09:56 $ go version
go version go1.13 darwin/amd64