Migrating dependency management to Go Modules

This commit is contained in:
Deluan 2020-01-04 21:02:15 -05:00
parent f7c182b1f8
commit f2c208795b
3 changed files with 115 additions and 445 deletions

35
go.mod Normal file
View file

@ -0,0 +1,35 @@
module github.com/cloudsonic/sonic-server
go 1.13
require (
github.com/BurntSushi/toml v0.3.0
github.com/astaxie/beego v1.8.0
github.com/boltdb/bolt v1.3.1-0.20170131192018-e9cf4fae01b5
github.com/cupcake/rdb v0.0.0-20161107195141-43ba34106c76
github.com/deluan/gomate v0.0.0-20160327212459-3eb40643dd6f
github.com/dhowden/itl v0.0.0-20170329215456-9fbe21093131
github.com/dhowden/plist v0.0.0-20141002110153-5db6e0d9931a
github.com/dhowden/tag v0.0.0-20170128231422-9edd38ca5d10
github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712
github.com/fatih/camelcase v0.0.0-20160318181535-f6a740d52f96
github.com/fatih/structs v1.0.0
github.com/golang/snappy v0.0.0-20170215233205-553a64147049
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1
github.com/jtolds/gls v4.20.0+incompatible
github.com/karlkfi/inject v0.0.0-20151024064801-fe06da2f020c
github.com/kennygrant/sanitize v0.0.0-20170120101633-6a0bfdde8629
github.com/koding/multiconfig v0.0.0-20170327155832-26b6dfd3a84a
github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
github.com/siddontang/go v0.0.0-20161005110831-1e9ce2a5ac40
github.com/siddontang/ledisdb v0.0.0-20170318061737-5929802e2ea5
github.com/siddontang/rdb v0.0.0-20150307021120-fc89ed2e418d
github.com/smartystreets/assertions v1.0.1
github.com/smartystreets/goconvey v1.6.4
github.com/stretchr/testify v1.4.0 // indirect
github.com/syndtr/goleveldb v0.0.0-20170302031910-3c5717caf147
github.com/twinj/uuid v0.1.0
golang.org/x/net v0.0.0-20190311183353-d8887717615a
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
gopkg.in/yaml.v2 v2.2.2
)