mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
This adds a new configuration setting: AzurePublishEndpoints, similar to the existing S3PublishEndpoints and SwiftPublishEndpoints. For each endpoint, the following has to be defined: - accountName - accountKey - container - prefix Azure tests require the following environment variables to be set: - AZURE_STORAGE_ACCOUNT - AZURE_STORAGE_ACCESS_KEY With either of these not set, Azure-specific tests are skipped.
44 lines
2.0 KiB
Modula-2
44 lines
2.0 KiB
Modula-2
module github.com/aptly-dev/aptly
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/AlekSi/pointer v1.0.0
|
|
github.com/Azure/azure-storage-blob-go v0.13.0
|
|
github.com/DisposaBoy/JsonConfigReader v0.0.0-20130112093355-33a99fdf1d5e
|
|
github.com/awalterschulze/gographviz v0.0.0-20160912181450-761fd5fbb34e
|
|
github.com/aws/aws-sdk-go v1.25.0
|
|
github.com/cheggaaa/pb v1.0.10
|
|
github.com/fatih/color v1.7.0 // indirect
|
|
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7 // indirect
|
|
github.com/gin-gonic/gin v1.1.5-0.20170702092826-d459835d2b07
|
|
github.com/h2non/filetype v1.0.5
|
|
github.com/jlaffaye/ftp v0.0.0-20180404123514-2403248fa8cc // indirect
|
|
github.com/kjk/lzma v0.0.0-20161016003348-3fd93898850d
|
|
github.com/mattn/go-colorable v0.1.2 // indirect
|
|
github.com/mattn/go-runewidth v0.0.2 // indirect
|
|
github.com/mattn/go-shellwords v1.0.2
|
|
github.com/mkrautz/goar v0.0.0-20150919110319-282caa8bd9da
|
|
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
|
|
github.com/ncw/swift v1.0.30
|
|
github.com/pborman/uuid v0.0.0-20180122190007-c65b2f87fee3
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/smartystreets/gunit v1.0.4 // indirect
|
|
github.com/smira/commander v0.0.0-20140515201010-f408b00e68d5
|
|
github.com/smira/flag v0.0.0-20170926215700-695ea5e84e76
|
|
github.com/smira/go-aws-auth v0.0.0-20180731211914-8b73995fd8d1
|
|
github.com/smira/go-ftp-protocol v0.0.0-20140829150050-066b75c2b70d
|
|
github.com/smira/go-xz v0.0.0-20150414201226-0c531f070014
|
|
github.com/stretchr/testify v1.4.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d
|
|
github.com/ugorji/go v1.1.4
|
|
github.com/wsxiaoys/terminal v0.0.0-20160513160801-0940f3fc43a0
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
golang.org/x/sys v0.0.0-20200828194041-157a740278f4
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
|
|
gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect
|
|
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
|
|
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
|
|
gopkg.in/h2non/filetype.v1 v1.0.1 // indirect
|
|
)
|