cornfeedhobo / ssh-keydgen

Generate Deterministic SSH keys
Apache License 2.0
41 stars 9 forks source link

Can't build master with go 1.8.1 #4

Closed dopaminereceptionist closed 6 years ago

dopaminereceptionist commented 6 years ago
$ GOPATH=/tmp/gopath go get -v github.com/cornfeedhobo/ssh-keydgen
github.com/cornfeedhobo/ssh-keydgen (download)
created GOPATH=/tmp/gopath; see 'go help gopath'
package math/bits: unrecognized import path "math/bits" (import path does not begin with hostname)
$ go version
go version go1.8.1 linux/amd64
dopaminereceptionist commented 6 years ago

go 1.7 also has this problem.

cornfeedhobo commented 6 years ago

Correct, as the .travis.yml hints, I'm targeting 1.9 and above. I'll admit this bothered me when I made the decision, but needed to move on at the time.

cornfeedhobo commented 6 years ago

golang.org/x/crypto/ssh and golang.org/x/crypto/ripemd160 have adopted the math/bits library which was added in 1.9. I want to keep dependencies updated, and so will close this. I'll add a note to the README soon.

dopaminereceptionist commented 6 years ago

Ok, thank you!