1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/easypki/go.mod
Kevin Daudt f361197d10 community/easypki: fix build on riscv64/mips64
The original boltdb is archived, but does not support the architectures
we need, like mips64 and riscv64.

A fork of boltdb, called bbolt, has support for these arches, but it's a
different module, which makes it harder to switch to it, and the quality
of bbolt is questionable.

Instead, use a fork of bolt, which just adds support for these arches,
which are trivial files with some constants.
2021-07-01 11:25:42 +00:00

14 lines
468 B
Modula-2

module easypki
go 1.16
require (
github.com/boltdb/bolt v1.2.2-0.20160719165138-5cc10bbbc5c1
github.com/codegangsta/cli v1.19.2-0.20170506042529-d70f47eeca3a
github.com/go-yaml/yaml v0.0.0-20170407172122-cd8b52f8269e
github.com/google/easypki v1.1.1-0.20170217101540-d7ae2721b826
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
replace github.com/boltdb/bolt => gitlab.alpinelinux.org/kdaudt/bolt v1.3.3