diff options
author | 2018-07-29 19:37:27 +0000 | |
---|---|---|
committer | 2019-01-27 17:55:12 -0800 | |
commit | ca933d746ba16ef326d9b4ba85d51940ab9e8add (patch) | |
tree | 203e060468f27bb05095aaa1cb755d7c961bd530 /Gopkg.lock | |
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.lock')
-rw-r--r-- | Gopkg.lock | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/Gopkg.lock b/Gopkg.lock new file mode 100644 index 0000000..6c7468d --- /dev/null +++ b/Gopkg.lock @@ -0,0 +1,104 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + digest = "1:2e3c336fc7fde5c984d2841455a658a6d626450b1754a854b3b32e7a8f49a07a" + name = "github.com/google/go-cmp" + packages = [ + "cmp", + "cmp/internal/diff", + "cmp/internal/function", + "cmp/internal/value", + ] + pruneopts = "UT" + revision = "3af367b6b30c263d47e8895973edcca9a49cf029" + version = "v0.2.0" + +[[projects]] + digest = "1:40e195917a951a8bf867cd05de2a46aaf1806c50cf92eebf4c16f78cd196f747" + name = "github.com/pkg/errors" + packages = ["."] + pruneopts = "UT" + revision = "645ef00459ed84a119197bfb8d8205042c6df63d" + version = "v0.8.0" + +[[projects]] + branch = "master" + digest = "1:4f43b3c1b7e44980a5f3c593f8bf0e18844dc44f451a071c93e77e28cf990db6" + name = "github.com/pkg/term" + packages = ["termios"] + pruneopts = "UT" + revision = "cda20d4ac917ad418d86e151eff439648b06185b" + +[[projects]] + branch = "master" + digest = "1:b9b666a56e920eaa59ffea0d25a9b848d7073be13689c4a29d04e4a0f548a031" + name = "github.com/tarm/serial" + packages = ["."] + pruneopts = "UT" + revision = "eaafced92e9619f03c72527efeab21e326f3bc36" + +[[projects]] + digest = "1:60550785588e9d2a3afcb619b2cb92e802183bc0e53ec2aedaeefa2ebf6700d0" + name = "gitlab.com/gomidi/midi" + packages = [ + ".", + "cc", + "internal/midilib", + "internal/runningstatus", + "internal/vlq", + "mid", + "midimessage", + "midimessage/channel", + "midimessage/meta", + "midimessage/meta/meter", + "midimessage/realtime", + "midimessage/syscommon", + "midimessage/sysex", + "midireader", + "midiwriter", + "smf", + "smf/smfreader", + "smf/smfwriter", + ] + pruneopts = "UT" + revision = "2499eaf73227fafd8e1ca0a625c569066835d695" + version = "v1.7.9" + +[[projects]] + branch = "master" + digest = "1:d773e525476aefa22ea944a5425a9bfb99819b2e67eeb9b1966454fd57522bbf" + name = "golang.org/x/sys" + packages = ["unix"] + pruneopts = "UT" + revision = "ac767d655b305d4e9612f5f6e33120b9176c4ad4" + +[[projects]] + digest = "1:23fe6c6a60e25700c53335117c4176780d207c7799958ad051d0a8b82b00efb6" + name = "gotest.tools" + packages = [ + "assert", + "assert/cmp", + "golden", + "internal/difflib", + "internal/format", + "internal/source", + ] + pruneopts = "UT" + revision = "b6e20af1ed078cd01a6413b734051a292450b4cb" + version = "v2.1.0" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + input-imports = [ + "github.com/pkg/term/termios", + "github.com/tarm/serial", + "gitlab.com/gomidi/midi", + "gitlab.com/gomidi/midi/mid", + "gitlab.com/gomidi/midi/midimessage", + "gitlab.com/gomidi/midi/smf", + "gotest.tools/golden", + ] + solver-name = "gps-cdcl" + solver-version = 1 |