diff options
author | 2018-07-29 19:37:27 +0000 | |
---|---|---|
committer | 2019-01-27 17:55:12 -0800 | |
commit | ca933d746ba16ef326d9b4ba85d51940ab9e8add (patch) | |
tree | 203e060468f27bb05095aaa1cb755d7c961bd530 /Gopkg.toml | |
parent | chore: initial commit (diff) | |
download | midifi-ca933d746ba16ef326d9b4ba85d51940ab9e8add.tar.xz |
feat: initial version of midifi software
This CL introduces the initial version of the midifi software, via
a simplified CLI interface "playsmf".
Though it is far from complete, this version can be manually invoked
with the locations of the MIDI communications port (the `-com` flag),
and MIDI file. It will playback the MIDI file with the correct time.
Software is currently tested with an integration test, that invokes the
program with a known MIDI file and compares the output of the serial
port, standard out, and standard error. Golden files can be updated by
providing the `-test.update-golden` flag.
Change-Id: I312bc721736e2edf385ece5141133ffa6bd20a72
Signed-off-by: Terin Stock <terinjokes@gmail.com>
Diffstat (limited to 'Gopkg.toml')
-rw-r--r-- | Gopkg.toml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..2765dc9 --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,29 @@ +# 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 + +[prune] + go-tests = true + unused-packages = true |