-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project setup to support go modules
- Loading branch information
Showing
3 changed files
with
288 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |
Oops, something went wrong.