| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-10-25 | Delete vendored code and update CI to Go 1.13 (#158) | Joseph Richey | |
| As the Go community transitions to using the modules ecosystem, we want to only support one way of managing dependencies. So this change moves to only using Go modules for dependency management. This means that our effective minimum Go version increases to Go 1.11. To account for this, we also update: - the documentation - Makefile - CI scripts | |||
| 2018-08-30 | Update dependancies to lastest version | Joe Richey joerichey@google.com | |
| 2017-05-02 | vendor: adding in golang.org/x/sys/unix package | Joe Richey joerichey@google.com | |
| This commit adds in the golang.org/x/sys/unix package. This package provides a low-level interface to unix syscalls. We will uses this package instead of the built-in "syscall" package because the syscall package is locked down (https://golang.org/pkg/syscall) and is not exposing any new kernel functionality. In fact, this is actually a patched version of the x/sys/unix package pending review (first part: https://go-review.googlesource.com/c/37943). The version included in this commit exposes all of the filesystem encryption kernel interfaces to Go code. Change-Id: Ic5f9c98b858ccb00db97502c9a60e9249aa8ba38 | |||