-
Notifications
You must be signed in to change notification settings - Fork 10
/
VENDORED
60 lines (43 loc) · 1.89 KB
/
VENDORED
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
VENDORED DEPENDENCIES README
============================
NB: This has nothing to do with the Go 1.5 vendor/ directory
feature, although we've renamed our directory to vendored_deps/
to avoid conflicting interpretation under Go 1.5.
To make sure the project isn't broken by updates to its two
dependencies, capnproto and nanomsg, we vendor their sources
into two directories, vendored_deps/nanomsg and
vendored_deps/capnproto. The versions there are
described below, along with their github origins.
During installation, if you are feeling excessively cautious,
you may utilize the vendored versions here to get
known-good/known-to-work versions. This protects the project
against future breaking-changes. In this case you
would skip installing capnproto and
nanomsg from github, and instead run
"make installation" to install from the vendored_deps/ directory.
That said, the github most-recent versions of these projects
are likely fine. This is just in case.
Initial vendoring occurred at Sun May 11 14:43:35 PDT 2014.
[1] nanomsg version:
jaten@:/usr/cn/nanomsg$ git branch -v
* master ea067e2 Inital version of publish/subscribe RFC added
jaten@:/usr/cn/nanomsg$ git remote -v
origin https://github.com/nanomsg/nanomsg (fetch)
origin https://github.com/nanomsg/nanomsg (push)
commit 98f720c0c96135fd8073405bb34066ebe564e87a
...
[2] capnproto version:
jaten@:/usr/cn/capnproto$ git remote -v
origin https://github.com/kentonv/capnproto (fetch)
origin https://github.com/kentonv/capnproto (push)
$ git branch -v
* master 8009807 Merge pull request #88 from partylemon/Iterator
$ git log
commit 8009807eb7307fdd26e0240713c93a522043949e
Merge: e80de83 6446281
Author: Kenton Varda <temporal@gmail.com>
Date: Thu May 8 20:03:01 2014 -0700
Merge pull request #88 from partylemon/Iterator
Explicitly mark IndexingIterator as a RandomAccessIterator
commit 64462816ef087e148550af1a467487293ae3247c
...