Skip to content

Commit

Permalink
Update project setup to support go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
td5r committed May 17, 2022
1 parent 043dd1f commit ec2f9bb
Show file tree
Hide file tree
Showing 3 changed files with 288 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you rather want to compile it yourself, you first need to install [Go](https:

After you have set up Go and cloned the repository, switch to the root directory and run

`go get -v ./...`
`go build ./...`

This will fetch all the dependencies. After that, run

Expand Down
54 changes: 54 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
module github.com/Bitspark/slang

go 1.18

require (
github.com/Bitspark/browser v0.0.0-20170505125900-c90ca0c84f15
github.com/Bitspark/go-funk v0.0.0-20180110164951-54489e5ff390
github.com/Bitspark/go-github v15.0.0+incompatible
github.com/Bitspark/go-version v0.0.0-20180716215031-270f2f71b1ee
github.com/Knetic/govaluate v3.0.0+incompatible
github.com/Shopify/sarama v1.32.0
github.com/eclipse/paho.mqtt.golang v1.3.5
github.com/go-redis/redis v6.15.9+incompatible
github.com/go-sql-driver/mysql v1.6.0
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/robfig/cron v1.2.0
github.com/rs/cors v1.8.2
github.com/sirupsen/logrus v1.8.1
github.com/stoewer/go-strcase v1.2.0
github.com/stretchr/testify v1.7.1
github.com/tealeg/xlsx v1.0.5
github.com/tidwall/gjson v1.14.0
gopkg.in/yaml.v2 v2.4.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eapache/go-resiliency v1.2.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.0.0 // indirect
github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/klauspost/compress v1.14.4 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.18.1 // indirect
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
Loading

0 comments on commit ec2f9bb

Please sign in to comment.