diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-10 12:26:01 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-10 12:53:36 +0700 |
| commit | 378facb96e877ed275a59d974ee9b69e06120a53 (patch) | |
| tree | fe930c06d3d306c872c15bf36d74a24dbb35a993 /go.mod | |
| parent | d7ae2721b8268b1e2880656504f41d4ae94c902b (diff) | |
| download | easypki-378facb96e877ed275a59d974ee9b69e06120a53.tar.xz | |
all: fork of unmaintained "github.com/google/easypki"
Changes,
* Add Go module
* replace "github.com/codegangsta/cli" with "github.com/urfave/cli"
* Changes import path to this repository using the following command,
$ find . -type f -name "*.go" \
| xargs sed -i "s#github.com/google/easypki#git.sr.ht/~shulhan/easypki#g"
* Reformat all files using goimports
* Remove reference to Travis and CodeCov
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +module git.sr.ht/~shulhan/easypki + +go 1.21 + +require ( + github.com/boltdb/bolt v1.3.1 + github.com/go-yaml/yaml v2.1.0+incompatible + github.com/google/easypki v1.1.0 + github.com/urfave/cli v1.22.14 +) + +require ( + github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect + golang.org/x/sys v0.14.0 // indirect +) |
