aboutsummaryrefslogtreecommitdiff
path: root/Gopkg.toml
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2017-07-14 16:38:48 -0600
committerLibravatar Terin Stock <terinjokes@gmail.com>2017-07-14 23:38:25 -0600
commitd5b1fc4cea623a0d1699c9c2e693415ac69ca667 (patch)
treed56a1b3e9b4fa20aa6e710c413d2defa52581c95 /Gopkg.toml
parentfeat(main): just enough to bakelite itself (diff)
downloadbakelite-d5b1fc4cea623a0d1699c9c2e693415ac69ca667.tar.xz
feat(main): run jobs in parallel
Ons systems with multiple CPUs, support running build jobs in parallel. This is currently a naive implementation, which only supports running `runtime.NumCPU()` jobs, with no additional configuration.
Diffstat (limited to 'Gopkg.toml')
-rw-r--r--Gopkg.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml
new file mode 100644
index 0000000..3e6859e
--- /dev/null
+++ b/Gopkg.toml
@@ -0,0 +1,3 @@
+[[constraint]]
+ branch = "master"
+ name = "github.com/neelance/parallel"