Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

for go mod system #98

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
module github.com/bbuck/dragon-mud

go 1.18

require (
github.com/Sirupsen/logrus v0.11.0
github.com/chzyer/readline v0.0.0-20160726135117-62c6fe619375
github.com/fatih/structs v1.0.0
github.com/gobuffalo/velvet v0.0.0-20170320144106-d97471bf5d8f
github.com/johnnadratowski/golang-neo4j-bolt-driver v0.0.0-20161220215215-2387cc1f0125
github.com/mitchellh/mapstructure v0.0.0-20170125051937-db1efb556f84
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.19.0
github.com/satori/go.uuid v1.1.0
github.com/spf13/cobra v0.0.0-20170126193219-c29ece4386f7
github.com/spf13/pflag v0.0.0-20170125153548-a9a634f3de0a
github.com/spf13/viper v0.0.0-20161213093849-5ed0fc31f7f4
github.com/x-cray/logrus-prefixed-formatter v0.3.1
github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
layeh.com/gopher-luar v0.0.0-20170506165809-16281577dff2
)

require (
github.com/aymerick/raymond v2.0.2-0.20161209220724-72acac220747+incompatible // indirect
github.com/chzyer/test v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/hashicorp/hcl v0.0.0-20170125010635-db4f0768927a // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/magiconair/properties v1.7.2-0.20170113111004-b3b15ef068fd // indirect
github.com/markbates/inflect v0.0.0-20170411191001-6cacb66d1004 // indirect
github.com/mgutz/ansi v0.0.0-20150914162238-c286dcecd19f // indirect
github.com/microcosm-cc/bluemonday v0.0.0-20161202143824-e79763773ab6 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pelletier/go-buffruneio v0.1.0 // indirect
github.com/pelletier/go-toml v0.4.1-0.20170116024911-a1f048ba2449 // indirect
github.com/pkg/errors v0.8.1-0.20170505043639-c605e284fe17 // indirect
github.com/russross/blackfriday v0.0.0-20170610170232-067529f716f4 // indirect
github.com/sergi/go-diff v0.0.0-20170409071739-feef008d51ad // indirect
github.com/shurcooL/github_flavored_markdown v0.0.0-20170210172023-3c64cb3ce00a // indirect
github.com/shurcooL/go v0.0.0-20200502201357-93f07166e636 // indirect
github.com/shurcooL/go-goon v1.0.0 // indirect
github.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b // indirect
github.com/shurcooL/highlight_go v0.0.0-20170515013102-78fb10f4a5f8 // indirect
github.com/shurcooL/octiconssvg v0.0.0-20170121072549-1aed2117d2aa // indirect
github.com/shurcooL/sanitized_anchor_name v0.0.0-20170515013256-541ff5ee47f1 // indirect
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d // indirect
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e // indirect
github.com/spf13/afero v0.0.0-20170109225320-72b31426848c // indirect
github.com/spf13/cast v0.0.0-20170128120931-d1139bab1c07 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20170109133355-fa7ca7e836cf // indirect
github.com/stretchr/testify v1.8.0 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)