Skip to content

Commit

Permalink
Add dep and go mod dependency files
Browse files Browse the repository at this point in the history
  • Loading branch information
200sc committed Mar 4, 2019
1 parent 82938d2 commit af95e9d
Show file tree
Hide file tree
Showing 3 changed files with 385 additions and 0 deletions.
277 changes: 277 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

82 changes: 82 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
branch = "master"
name = "github.com/200sc/go-dist"

[[constraint]]
name = "github.com/200sc/klangsynthese"
version = "0.1.1"

[[constraint]]
name = "github.com/BurntSushi/toml"
version = "0.3.1"

[[constraint]]
branch = "master"
name = "github.com/akavel/polyclip-go"

[[constraint]]
name = "github.com/davecgh/go-spew"
version = "1.1.1"

[[constraint]]
name = "github.com/disintegration/gift"
version = "1.2.0"

[[constraint]]
branch = "master"
name = "github.com/golang/freetype"

[[constraint]]
branch = "master"
name = "github.com/oakmound/lowrez17"

[[constraint]]
name = "github.com/oakmound/shiny"
version = "0.1.0"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.3.0"

[[constraint]]
branch = "master"
name = "golang.org/x/image"

[[constraint]]
branch = "master"
name = "golang.org/x/mobile"

[[constraint]]
branch = "master"
name = "golang.org/x/sync"

[prune]
go-tests = true
unused-packages = true
26 changes: 26 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module github.com/oakmound/oak

require (
github.com/200sc/go-dist v0.0.0-20180217184639-8bdf90fe4b02
github.com/200sc/klangsynthese v0.1.1
github.com/BurntSushi/toml v0.3.1
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802
github.com/akavel/polyclip-go v0.0.0-20160111220610-2cfdb71461bd
github.com/davecgh/go-spew v1.1.1
github.com/disintegration/gift v1.2.0
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/hajimehoshi/go-mp3 v0.1.1
github.com/oakmound/alsa-go v0.0.0-20190302183935-ba5351447e12
github.com/oakmound/lowrez17 v0.0.0-20180207115707-da6171067fff
github.com/oakmound/shiny v0.1.0
github.com/oakmound/w32 v1.0.0
github.com/oov/directsound-go v0.0.0-20141101201356-e53e59c700bf
github.com/pkg/errors v0.8.1
github.com/pmezard/go-difflib v1.0.0
github.com/stretchr/testify v1.3.0
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067
golang.org/x/mobile v0.0.0-20190302063618-b8c6dab863a6
golang.org/x/net v0.0.0-20190301231341-16b79f2e4e95
golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6
golang.org/x/sys v0.0.0-20190303192550-c2f5717e611c
)

0 comments on commit af95e9d

Please sign in to comment.