You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

modules.txt 24 kB

Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
7 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
7 years ago
Improve listing performance by using go-git (#6478) * Use go-git for tree reading and commit info lookup. Signed-off-by: Filip Navara <navara@emclient.com> * Use TreeEntry.IsRegular() instead of ObjectType that was removed. Signed-off-by: Filip Navara <navara@emclient.com> * Use the treePath to optimize commit info search. Signed-off-by: Filip Navara <navara@emclient.com> * Extract the latest commit at treePath along with the other commits. Signed-off-by: Filip Navara <navara@emclient.com> * Fix listing commit info for a directory that was created in one commit and never modified after. Signed-off-by: Filip Navara <navara@emclient.com> * Avoid nearly all external 'git' invocations when doing directory listing (.editorconfig code path is still hit). Signed-off-by: Filip Navara <navara@emclient.com> * Use go-git for reading blobs. Signed-off-by: Filip Navara <navara@emclient.com> * Make SHA1 type alias for plumbing.Hash in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Make Signature type alias for object.Signature in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Fix GetCommitsInfo for repository with only one commit. Signed-off-by: Filip Navara <navara@emclient.com> * Fix PGP signature verification. Signed-off-by: Filip Navara <navara@emclient.com> * Fix issues with walking commit graph across merges. Signed-off-by: Filip Navara <navara@emclient.com> * Fix typo in condition. Signed-off-by: Filip Navara <navara@emclient.com> * Speed up loading branch list by keeping the repository reference (and thus all the loaded packfile indexes). Signed-off-by: Filip Navara <navara@emclient.com> * Fix lising submodules. Signed-off-by: Filip Navara <navara@emclient.com> * Fix build Signed-off-by: Filip Navara <navara@emclient.com> * Add back commit cache because of name-rev Signed-off-by: Filip Navara <navara@emclient.com> * Fix tests Signed-off-by: Filip Navara <navara@emclient.com> * Fix code style * Fix spelling * Address PR feedback Signed-off-by: Filip Navara <navara@emclient.com> * Update vendor module list Signed-off-by: Filip Navara <navara@emclient.com> * Fix getting trees by commit id Signed-off-by: Filip Navara <navara@emclient.com> * Fix remaining unit test failures * Fix GetTreeBySHA * Avoid running `git name-rev` if not necessary Signed-off-by: Filip Navara <navara@emclient.com> * Move Branch code to git module * Clean up GPG signature verification and fix it for tagged commits * Address PR feedback (import formatting, copyright headers) * Make blob lookup by SHA working * Update tests to use public API * Allow getting content from any type of object through the blob interface * Change test to actually expect the object content that is in the GIT repository * Change one more test to actually expect the object content that is in the GIT repository * Add comments
7 years ago
Improve listing performance by using go-git (#6478) * Use go-git for tree reading and commit info lookup. Signed-off-by: Filip Navara <navara@emclient.com> * Use TreeEntry.IsRegular() instead of ObjectType that was removed. Signed-off-by: Filip Navara <navara@emclient.com> * Use the treePath to optimize commit info search. Signed-off-by: Filip Navara <navara@emclient.com> * Extract the latest commit at treePath along with the other commits. Signed-off-by: Filip Navara <navara@emclient.com> * Fix listing commit info for a directory that was created in one commit and never modified after. Signed-off-by: Filip Navara <navara@emclient.com> * Avoid nearly all external 'git' invocations when doing directory listing (.editorconfig code path is still hit). Signed-off-by: Filip Navara <navara@emclient.com> * Use go-git for reading blobs. Signed-off-by: Filip Navara <navara@emclient.com> * Make SHA1 type alias for plumbing.Hash in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Make Signature type alias for object.Signature in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Fix GetCommitsInfo for repository with only one commit. Signed-off-by: Filip Navara <navara@emclient.com> * Fix PGP signature verification. Signed-off-by: Filip Navara <navara@emclient.com> * Fix issues with walking commit graph across merges. Signed-off-by: Filip Navara <navara@emclient.com> * Fix typo in condition. Signed-off-by: Filip Navara <navara@emclient.com> * Speed up loading branch list by keeping the repository reference (and thus all the loaded packfile indexes). Signed-off-by: Filip Navara <navara@emclient.com> * Fix lising submodules. Signed-off-by: Filip Navara <navara@emclient.com> * Fix build Signed-off-by: Filip Navara <navara@emclient.com> * Add back commit cache because of name-rev Signed-off-by: Filip Navara <navara@emclient.com> * Fix tests Signed-off-by: Filip Navara <navara@emclient.com> * Fix code style * Fix spelling * Address PR feedback Signed-off-by: Filip Navara <navara@emclient.com> * Update vendor module list Signed-off-by: Filip Navara <navara@emclient.com> * Fix getting trees by commit id Signed-off-by: Filip Navara <navara@emclient.com> * Fix remaining unit test failures * Fix GetTreeBySHA * Avoid running `git name-rev` if not necessary Signed-off-by: Filip Navara <navara@emclient.com> * Move Branch code to git module * Clean up GPG signature verification and fix it for tagged commits * Address PR feedback (import formatting, copyright headers) * Make blob lookup by SHA working * Update tests to use public API * Allow getting content from any type of object through the blob interface * Change test to actually expect the object content that is in the GIT repository * Change one more test to actually expect the object content that is in the GIT repository * Add comments
7 years ago
Improve listing performance by using go-git (#6478) * Use go-git for tree reading and commit info lookup. Signed-off-by: Filip Navara <navara@emclient.com> * Use TreeEntry.IsRegular() instead of ObjectType that was removed. Signed-off-by: Filip Navara <navara@emclient.com> * Use the treePath to optimize commit info search. Signed-off-by: Filip Navara <navara@emclient.com> * Extract the latest commit at treePath along with the other commits. Signed-off-by: Filip Navara <navara@emclient.com> * Fix listing commit info for a directory that was created in one commit and never modified after. Signed-off-by: Filip Navara <navara@emclient.com> * Avoid nearly all external 'git' invocations when doing directory listing (.editorconfig code path is still hit). Signed-off-by: Filip Navara <navara@emclient.com> * Use go-git for reading blobs. Signed-off-by: Filip Navara <navara@emclient.com> * Make SHA1 type alias for plumbing.Hash in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Make Signature type alias for object.Signature in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Fix GetCommitsInfo for repository with only one commit. Signed-off-by: Filip Navara <navara@emclient.com> * Fix PGP signature verification. Signed-off-by: Filip Navara <navara@emclient.com> * Fix issues with walking commit graph across merges. Signed-off-by: Filip Navara <navara@emclient.com> * Fix typo in condition. Signed-off-by: Filip Navara <navara@emclient.com> * Speed up loading branch list by keeping the repository reference (and thus all the loaded packfile indexes). Signed-off-by: Filip Navara <navara@emclient.com> * Fix lising submodules. Signed-off-by: Filip Navara <navara@emclient.com> * Fix build Signed-off-by: Filip Navara <navara@emclient.com> * Add back commit cache because of name-rev Signed-off-by: Filip Navara <navara@emclient.com> * Fix tests Signed-off-by: Filip Navara <navara@emclient.com> * Fix code style * Fix spelling * Address PR feedback Signed-off-by: Filip Navara <navara@emclient.com> * Update vendor module list Signed-off-by: Filip Navara <navara@emclient.com> * Fix getting trees by commit id Signed-off-by: Filip Navara <navara@emclient.com> * Fix remaining unit test failures * Fix GetTreeBySHA * Avoid running `git name-rev` if not necessary Signed-off-by: Filip Navara <navara@emclient.com> * Move Branch code to git module * Clean up GPG signature verification and fix it for tagged commits * Address PR feedback (import formatting, copyright headers) * Make blob lookup by SHA working * Update tests to use public API * Allow getting content from any type of object through the blob interface * Change test to actually expect the object content that is in the GIT repository * Change one more test to actually expect the object content that is in the GIT repository * Add comments
7 years ago
Improve listing performance by using go-git (#6478) * Use go-git for tree reading and commit info lookup. Signed-off-by: Filip Navara <navara@emclient.com> * Use TreeEntry.IsRegular() instead of ObjectType that was removed. Signed-off-by: Filip Navara <navara@emclient.com> * Use the treePath to optimize commit info search. Signed-off-by: Filip Navara <navara@emclient.com> * Extract the latest commit at treePath along with the other commits. Signed-off-by: Filip Navara <navara@emclient.com> * Fix listing commit info for a directory that was created in one commit and never modified after. Signed-off-by: Filip Navara <navara@emclient.com> * Avoid nearly all external 'git' invocations when doing directory listing (.editorconfig code path is still hit). Signed-off-by: Filip Navara <navara@emclient.com> * Use go-git for reading blobs. Signed-off-by: Filip Navara <navara@emclient.com> * Make SHA1 type alias for plumbing.Hash in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Make Signature type alias for object.Signature in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Fix GetCommitsInfo for repository with only one commit. Signed-off-by: Filip Navara <navara@emclient.com> * Fix PGP signature verification. Signed-off-by: Filip Navara <navara@emclient.com> * Fix issues with walking commit graph across merges. Signed-off-by: Filip Navara <navara@emclient.com> * Fix typo in condition. Signed-off-by: Filip Navara <navara@emclient.com> * Speed up loading branch list by keeping the repository reference (and thus all the loaded packfile indexes). Signed-off-by: Filip Navara <navara@emclient.com> * Fix lising submodules. Signed-off-by: Filip Navara <navara@emclient.com> * Fix build Signed-off-by: Filip Navara <navara@emclient.com> * Add back commit cache because of name-rev Signed-off-by: Filip Navara <navara@emclient.com> * Fix tests Signed-off-by: Filip Navara <navara@emclient.com> * Fix code style * Fix spelling * Address PR feedback Signed-off-by: Filip Navara <navara@emclient.com> * Update vendor module list Signed-off-by: Filip Navara <navara@emclient.com> * Fix getting trees by commit id Signed-off-by: Filip Navara <navara@emclient.com> * Fix remaining unit test failures * Fix GetTreeBySHA * Avoid running `git name-rev` if not necessary Signed-off-by: Filip Navara <navara@emclient.com> * Move Branch code to git module * Clean up GPG signature verification and fix it for tagged commits * Address PR feedback (import formatting, copyright headers) * Make blob lookup by SHA working * Update tests to use public API * Allow getting content from any type of object through the blob interface * Change test to actually expect the object content that is in the GIT repository * Change one more test to actually expect the object content that is in the GIT repository * Add comments
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. # cloud.google.com/go v0.45.0
  2. cloud.google.com/go/civil
  3. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  4. gitea.com/macaron/binding
  5. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  6. gitea.com/macaron/cache
  7. gitea.com/macaron/cache/memcache
  8. gitea.com/macaron/cache/redis
  9. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  10. gitea.com/macaron/captcha
  11. # gitea.com/macaron/cors v0.0.0-20190821152825-7dcef4a17175
  12. gitea.com/macaron/cors
  13. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  14. gitea.com/macaron/csrf
  15. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  16. gitea.com/macaron/i18n
  17. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  18. gitea.com/macaron/inject
  19. # gitea.com/macaron/macaron v1.3.3-0.20190821202302-9646c0587edb
  20. gitea.com/macaron/macaron
  21. # gitea.com/macaron/session v0.0.0-20190821211443-122c47c5f705
  22. gitea.com/macaron/session
  23. gitea.com/macaron/session/couchbase
  24. gitea.com/macaron/session/memcache
  25. gitea.com/macaron/session/mysql
  26. gitea.com/macaron/session/nodb
  27. gitea.com/macaron/session/postgres
  28. gitea.com/macaron/session/redis
  29. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  30. gitea.com/macaron/toolbox
  31. # github.com/BurntSushi/toml v0.3.1
  32. github.com/BurntSushi/toml
  33. # github.com/PuerkitoBio/goquery v1.5.0
  34. github.com/PuerkitoBio/goquery
  35. # github.com/PuerkitoBio/purell v1.1.1
  36. github.com/PuerkitoBio/purell
  37. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  38. github.com/PuerkitoBio/urlesc
  39. # github.com/RoaringBitmap/roaring v0.4.7
  40. github.com/RoaringBitmap/roaring
  41. # github.com/andybalholm/cascadia v1.0.0
  42. github.com/andybalholm/cascadia
  43. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  44. github.com/anmitsu/go-shlex
  45. # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
  46. github.com/asaskevich/govalidator
  47. # github.com/beorn7/perks v1.0.1
  48. github.com/beorn7/perks/quantile
  49. # github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3
  50. github.com/blevesearch/bleve
  51. github.com/blevesearch/bleve/analysis/analyzer/custom
  52. github.com/blevesearch/bleve/analysis/token/lowercase
  53. github.com/blevesearch/bleve/analysis/token/unicodenorm
  54. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  55. github.com/blevesearch/bleve/index/upsidedown
  56. github.com/blevesearch/bleve/mapping
  57. github.com/blevesearch/bleve/search/query
  58. github.com/blevesearch/bleve/document
  59. github.com/blevesearch/bleve/analysis
  60. github.com/blevesearch/bleve/analysis/datetime/optional
  61. github.com/blevesearch/bleve/index
  62. github.com/blevesearch/bleve/index/scorch
  63. github.com/blevesearch/bleve/index/store
  64. github.com/blevesearch/bleve/index/store/boltdb
  65. github.com/blevesearch/bleve/index/store/gtreap
  66. github.com/blevesearch/bleve/registry
  67. github.com/blevesearch/bleve/search
  68. github.com/blevesearch/bleve/search/collector
  69. github.com/blevesearch/bleve/search/facet
  70. github.com/blevesearch/bleve/search/highlight
  71. github.com/blevesearch/bleve/search/highlight/highlighter/html
  72. github.com/blevesearch/bleve/size
  73. github.com/blevesearch/bleve/analysis/analyzer/standard
  74. github.com/blevesearch/bleve/geo
  75. github.com/blevesearch/bleve/numeric
  76. github.com/blevesearch/bleve/search/searcher
  77. github.com/blevesearch/bleve/analysis/datetime/flexible
  78. github.com/blevesearch/bleve/index/scorch/mergeplan
  79. github.com/blevesearch/bleve/index/scorch/segment
  80. github.com/blevesearch/bleve/index/scorch/segment/zap
  81. github.com/blevesearch/bleve/search/highlight/format/html
  82. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  83. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  84. github.com/blevesearch/bleve/analysis/lang/en
  85. github.com/blevesearch/bleve/search/scorer
  86. github.com/blevesearch/bleve/analysis/token/porter
  87. github.com/blevesearch/bleve/analysis/token/stop
  88. # github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f
  89. github.com/blevesearch/go-porterstemmer
  90. # github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc
  91. github.com/blevesearch/segment
  92. # github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26
  93. github.com/boombuler/barcode
  94. github.com/boombuler/barcode/qr
  95. github.com/boombuler/barcode/utils
  96. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  97. github.com/bradfitz/gomemcache/memcache
  98. # github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f
  99. github.com/chaseadamsio/goorgeous
  100. # github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d
  101. github.com/couchbase/gomemcached
  102. github.com/couchbase/gomemcached/client
  103. # github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b
  104. github.com/couchbase/goutils/logging
  105. github.com/couchbase/goutils/scramsha
  106. # github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe
  107. github.com/couchbase/vellum
  108. github.com/couchbase/vellum/levenshtein2
  109. github.com/couchbase/vellum/regexp
  110. github.com/couchbase/vellum/utf8
  111. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  112. github.com/couchbaselabs/go-couchbase
  113. # github.com/davecgh/go-spew v1.1.1
  114. github.com/davecgh/go-spew/spew
  115. # github.com/denisenkom/go-mssqldb v0.0.0-20190820223206-44cdfe8d8ba9
  116. github.com/denisenkom/go-mssqldb
  117. github.com/denisenkom/go-mssqldb/internal/cp
  118. github.com/denisenkom/go-mssqldb/internal/querytext
  119. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  120. github.com/dgrijalva/jwt-go
  121. # github.com/edsrzf/mmap-go v1.0.0
  122. github.com/edsrzf/mmap-go
  123. # github.com/emirpasic/gods v1.12.0
  124. github.com/emirpasic/gods/trees/binaryheap
  125. github.com/emirpasic/gods/containers
  126. github.com/emirpasic/gods/lists/arraylist
  127. github.com/emirpasic/gods/trees
  128. github.com/emirpasic/gods/utils
  129. github.com/emirpasic/gods/lists
  130. # github.com/etcd-io/bbolt v1.3.2
  131. github.com/etcd-io/bbolt
  132. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  133. github.com/ethantkoenig/rupture
  134. # github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a
  135. github.com/facebookgo/clock
  136. # github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f
  137. github.com/facebookgo/grace/gracehttp
  138. github.com/facebookgo/grace/gracenet
  139. # github.com/facebookgo/httpdown v0.0.0-20160323221027-a3b1354551a2
  140. github.com/facebookgo/httpdown
  141. # github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4
  142. github.com/facebookgo/stats
  143. # github.com/fsnotify/fsnotify v1.4.7
  144. github.com/fsnotify/fsnotify
  145. # github.com/gliderlabs/ssh v0.2.2
  146. github.com/gliderlabs/ssh
  147. # github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd
  148. github.com/glycerine/go-unsnap-stream
  149. # github.com/go-openapi/analysis v0.19.4
  150. github.com/go-openapi/analysis
  151. github.com/go-openapi/analysis/internal
  152. # github.com/go-openapi/errors v0.19.2
  153. github.com/go-openapi/errors
  154. # github.com/go-openapi/inflect v0.19.0
  155. github.com/go-openapi/inflect
  156. # github.com/go-openapi/jsonpointer v0.19.2
  157. github.com/go-openapi/jsonpointer
  158. # github.com/go-openapi/jsonreference v0.19.2
  159. github.com/go-openapi/jsonreference
  160. # github.com/go-openapi/loads v0.19.2
  161. github.com/go-openapi/loads
  162. github.com/go-openapi/loads/fmts
  163. # github.com/go-openapi/runtime v0.19.4
  164. github.com/go-openapi/runtime/middleware
  165. github.com/go-openapi/runtime
  166. github.com/go-openapi/runtime/logger
  167. github.com/go-openapi/runtime/middleware/denco
  168. github.com/go-openapi/runtime/middleware/header
  169. github.com/go-openapi/runtime/middleware/untyped
  170. github.com/go-openapi/runtime/security
  171. # github.com/go-openapi/spec v0.19.2
  172. github.com/go-openapi/spec
  173. # github.com/go-openapi/strfmt v0.19.2
  174. github.com/go-openapi/strfmt
  175. # github.com/go-openapi/swag v0.19.5
  176. github.com/go-openapi/swag
  177. # github.com/go-openapi/validate v0.19.2
  178. github.com/go-openapi/validate
  179. # github.com/go-redis/redis v6.15.2+incompatible
  180. github.com/go-redis/redis
  181. github.com/go-redis/redis/internal
  182. github.com/go-redis/redis/internal/consistenthash
  183. github.com/go-redis/redis/internal/hashtag
  184. github.com/go-redis/redis/internal/pool
  185. github.com/go-redis/redis/internal/proto
  186. github.com/go-redis/redis/internal/util
  187. # github.com/go-sql-driver/mysql v1.4.1
  188. github.com/go-sql-driver/mysql
  189. # github.com/go-stack/stack v1.8.0
  190. github.com/go-stack/stack
  191. # github.com/go-swagger/go-swagger v0.20.1
  192. github.com/go-swagger/go-swagger/cmd/swagger
  193. github.com/go-swagger/go-swagger/cmd/swagger/commands
  194. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  195. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  196. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  197. github.com/go-swagger/go-swagger/codescan
  198. github.com/go-swagger/go-swagger/generator
  199. github.com/go-swagger/go-swagger/scan
  200. # github.com/go-xorm/xorm v0.7.7-0.20190822154023-17592d96b35b
  201. github.com/go-xorm/xorm
  202. # github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561
  203. github.com/gogits/chardet
  204. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  205. github.com/gogs/cron
  206. # github.com/golang/protobuf v1.3.2
  207. github.com/golang/protobuf/proto
  208. # github.com/golang/snappy v0.0.1
  209. github.com/golang/snappy
  210. # github.com/google/go-github/v24 v24.0.1
  211. github.com/google/go-github/v24/github
  212. # github.com/google/go-querystring v1.0.0
  213. github.com/google/go-querystring/query
  214. # github.com/gorilla/context v1.1.1
  215. github.com/gorilla/context
  216. # github.com/gorilla/handlers v1.4.2
  217. github.com/gorilla/handlers
  218. # github.com/gorilla/mux v1.6.2
  219. github.com/gorilla/mux
  220. # github.com/gorilla/securecookie v1.1.1
  221. github.com/gorilla/securecookie
  222. # github.com/gorilla/sessions v1.2.0
  223. github.com/gorilla/sessions
  224. # github.com/hashicorp/hcl v1.0.0
  225. github.com/hashicorp/hcl
  226. github.com/hashicorp/hcl/hcl/printer
  227. github.com/hashicorp/hcl/hcl/ast
  228. github.com/hashicorp/hcl/hcl/parser
  229. github.com/hashicorp/hcl/hcl/token
  230. github.com/hashicorp/hcl/json/parser
  231. github.com/hashicorp/hcl/hcl/scanner
  232. github.com/hashicorp/hcl/hcl/strconv
  233. github.com/hashicorp/hcl/json/scanner
  234. github.com/hashicorp/hcl/json/token
  235. # github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c
  236. github.com/issue9/identicon
  237. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  238. github.com/jaytaylor/html2text
  239. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  240. github.com/jbenet/go-context/io
  241. # github.com/jessevdk/go-flags v1.4.0
  242. github.com/jessevdk/go-flags
  243. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  244. github.com/kballard/go-shellquote
  245. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  246. github.com/kevinburke/ssh_config
  247. # github.com/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6
  248. github.com/keybase/go-crypto/openpgp
  249. github.com/keybase/go-crypto/openpgp/armor
  250. github.com/keybase/go-crypto/openpgp/packet
  251. github.com/keybase/go-crypto/openpgp/errors
  252. github.com/keybase/go-crypto/openpgp/s2k
  253. github.com/keybase/go-crypto/rsa
  254. github.com/keybase/go-crypto/brainpool
  255. github.com/keybase/go-crypto/cast5
  256. github.com/keybase/go-crypto/curve25519
  257. github.com/keybase/go-crypto/ed25519
  258. github.com/keybase/go-crypto/openpgp/ecdh
  259. github.com/keybase/go-crypto/openpgp/elgamal
  260. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  261. # github.com/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f
  262. github.com/klauspost/compress/gzip
  263. github.com/klauspost/compress/flate
  264. # github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc
  265. github.com/klauspost/cpuid
  266. # github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6
  267. github.com/klauspost/crc32
  268. # github.com/kr/pretty v0.1.0
  269. github.com/kr/pretty
  270. # github.com/kr/text v0.1.0
  271. github.com/kr/text
  272. # github.com/lafriks/xormstore v1.2.0
  273. github.com/lafriks/xormstore
  274. github.com/lafriks/xormstore/util
  275. # github.com/lib/pq v1.2.0
  276. github.com/lib/pq
  277. github.com/lib/pq/oid
  278. github.com/lib/pq/scram
  279. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  280. github.com/lunny/dingtalk_webhook
  281. # github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e
  282. github.com/lunny/levelqueue
  283. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  284. github.com/lunny/log
  285. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  286. github.com/lunny/nodb
  287. github.com/lunny/nodb/config
  288. github.com/lunny/nodb/store
  289. github.com/lunny/nodb/store/driver
  290. github.com/lunny/nodb/store/goleveldb
  291. # github.com/magiconair/properties v1.8.1
  292. github.com/magiconair/properties
  293. # github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e
  294. github.com/mailru/easyjson/jlexer
  295. github.com/mailru/easyjson/jwriter
  296. github.com/mailru/easyjson/buffer
  297. # github.com/markbates/goth v1.49.0
  298. github.com/markbates/goth
  299. github.com/markbates/goth/gothic
  300. github.com/markbates/goth/providers/bitbucket
  301. github.com/markbates/goth/providers/discord
  302. github.com/markbates/goth/providers/dropbox
  303. github.com/markbates/goth/providers/facebook
  304. github.com/markbates/goth/providers/github
  305. github.com/markbates/goth/providers/gitlab
  306. github.com/markbates/goth/providers/gplus
  307. github.com/markbates/goth/providers/openidConnect
  308. github.com/markbates/goth/providers/twitter
  309. # github.com/mattn/go-isatty v0.0.7
  310. github.com/mattn/go-isatty
  311. # github.com/mattn/go-sqlite3 v1.11.0
  312. github.com/mattn/go-sqlite3
  313. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  314. github.com/matttproud/golang_protobuf_extensions/pbutil
  315. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  316. github.com/mcuadros/go-version
  317. # github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a
  318. github.com/microcosm-cc/bluemonday
  319. # github.com/mitchellh/go-homedir v1.1.0
  320. github.com/mitchellh/go-homedir
  321. # github.com/mitchellh/mapstructure v1.1.2
  322. github.com/mitchellh/mapstructure
  323. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  324. github.com/mrjones/oauth
  325. # github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae
  326. github.com/mschoch/smat
  327. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  328. github.com/msteinert/pam
  329. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  330. github.com/nfnt/resize
  331. # github.com/oliamb/cutter v0.2.2
  332. github.com/oliamb/cutter
  333. # github.com/pelletier/go-toml v1.4.0
  334. github.com/pelletier/go-toml
  335. # github.com/philhofer/fwd v1.0.0
  336. github.com/philhofer/fwd
  337. # github.com/pkg/errors v0.8.1
  338. github.com/pkg/errors
  339. # github.com/pmezard/go-difflib v1.0.0
  340. github.com/pmezard/go-difflib/difflib
  341. # github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e
  342. github.com/pquerna/otp/totp
  343. github.com/pquerna/otp
  344. github.com/pquerna/otp/hotp
  345. # github.com/prometheus/client_golang v1.1.0
  346. github.com/prometheus/client_golang/prometheus
  347. github.com/prometheus/client_golang/prometheus/promhttp
  348. github.com/prometheus/client_golang/prometheus/internal
  349. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  350. github.com/prometheus/client_model/go
  351. # github.com/prometheus/common v0.6.0
  352. github.com/prometheus/common/expfmt
  353. github.com/prometheus/common/model
  354. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  355. # github.com/prometheus/procfs v0.0.4
  356. github.com/prometheus/procfs
  357. github.com/prometheus/procfs/internal/fs
  358. github.com/prometheus/procfs/internal/util
  359. # github.com/russross/blackfriday v0.0.0-20180428102519-11635eb403ff
  360. github.com/russross/blackfriday
  361. # github.com/satori/go.uuid v1.2.0
  362. github.com/satori/go.uuid
  363. # github.com/sergi/go-diff v1.0.0
  364. github.com/sergi/go-diff/diffmatchpatch
  365. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  366. github.com/shurcooL/httpfs/vfsutil
  367. # github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc
  368. github.com/shurcooL/sanitized_anchor_name
  369. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  370. github.com/shurcooL/vfsgen
  371. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  372. github.com/siddontang/go-snappy/snappy
  373. # github.com/spf13/afero v1.2.2
  374. github.com/spf13/afero
  375. github.com/spf13/afero/mem
  376. # github.com/spf13/cast v1.3.0
  377. github.com/spf13/cast
  378. # github.com/spf13/jwalterweatherman v1.1.0
  379. github.com/spf13/jwalterweatherman
  380. # github.com/spf13/pflag v1.0.3
  381. github.com/spf13/pflag
  382. # github.com/spf13/viper v1.4.0
  383. github.com/spf13/viper
  384. # github.com/src-d/gcfg v1.4.0
  385. github.com/src-d/gcfg
  386. github.com/src-d/gcfg/scanner
  387. github.com/src-d/gcfg/token
  388. github.com/src-d/gcfg/types
  389. # github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2
  390. github.com/steveyen/gtreap
  391. # github.com/stretchr/testify v1.4.0
  392. github.com/stretchr/testify/assert
  393. github.com/stretchr/testify/require
  394. # github.com/syndtr/goleveldb v1.0.0
  395. github.com/syndtr/goleveldb/leveldb
  396. github.com/syndtr/goleveldb/leveldb/cache
  397. github.com/syndtr/goleveldb/leveldb/comparer
  398. github.com/syndtr/goleveldb/leveldb/errors
  399. github.com/syndtr/goleveldb/leveldb/filter
  400. github.com/syndtr/goleveldb/leveldb/iterator
  401. github.com/syndtr/goleveldb/leveldb/journal
  402. github.com/syndtr/goleveldb/leveldb/memdb
  403. github.com/syndtr/goleveldb/leveldb/opt
  404. github.com/syndtr/goleveldb/leveldb/storage
  405. github.com/syndtr/goleveldb/leveldb/table
  406. github.com/syndtr/goleveldb/leveldb/util
  407. # github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200
  408. github.com/tinylib/msgp/msgp
  409. # github.com/toqueteos/webbrowser v1.2.0
  410. github.com/toqueteos/webbrowser
  411. # github.com/tstranex/u2f v1.0.0
  412. github.com/tstranex/u2f
  413. # github.com/unknwon/cae v0.0.0-20190822084630-55a0b64484a1
  414. github.com/unknwon/cae/zip
  415. github.com/unknwon/cae
  416. # github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e
  417. github.com/unknwon/com
  418. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  419. github.com/unknwon/i18n
  420. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  421. github.com/unknwon/paginater
  422. # github.com/urfave/cli v1.20.0
  423. github.com/urfave/cli
  424. # github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621
  425. github.com/willf/bitset
  426. # github.com/xanzy/ssh-agent v0.2.1
  427. github.com/xanzy/ssh-agent
  428. # github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53
  429. github.com/yohcop/openid-go
  430. # go.mongodb.org/mongo-driver v1.1.0
  431. go.mongodb.org/mongo-driver/bson
  432. go.mongodb.org/mongo-driver/bson/bsontype
  433. go.mongodb.org/mongo-driver/bson/primitive
  434. go.mongodb.org/mongo-driver/bson/bsoncodec
  435. go.mongodb.org/mongo-driver/bson/bsonrw
  436. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  437. # golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472
  438. golang.org/x/crypto/acme/autocert
  439. golang.org/x/crypto/argon2
  440. golang.org/x/crypto/bcrypt
  441. golang.org/x/crypto/pbkdf2
  442. golang.org/x/crypto/scrypt
  443. golang.org/x/crypto/ssh
  444. golang.org/x/crypto/acme
  445. golang.org/x/crypto/openpgp
  446. golang.org/x/crypto/md4
  447. golang.org/x/crypto/blake2b
  448. golang.org/x/crypto/blowfish
  449. golang.org/x/crypto/curve25519
  450. golang.org/x/crypto/ed25519
  451. golang.org/x/crypto/internal/chacha20
  452. golang.org/x/crypto/poly1305
  453. golang.org/x/crypto/openpgp/armor
  454. golang.org/x/crypto/openpgp/errors
  455. golang.org/x/crypto/openpgp/packet
  456. golang.org/x/crypto/openpgp/s2k
  457. golang.org/x/crypto/ed25519/internal/edwards25519
  458. golang.org/x/crypto/internal/subtle
  459. golang.org/x/crypto/cast5
  460. golang.org/x/crypto/openpgp/elgamal
  461. golang.org/x/crypto/ssh/knownhosts
  462. golang.org/x/crypto/ssh/agent
  463. # golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297
  464. golang.org/x/net/html/charset
  465. golang.org/x/net/html
  466. golang.org/x/net/html/atom
  467. golang.org/x/net/idna
  468. golang.org/x/net/context/ctxhttp
  469. golang.org/x/net/proxy
  470. golang.org/x/net/context
  471. golang.org/x/net/internal/socks
  472. # golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  473. golang.org/x/oauth2
  474. golang.org/x/oauth2/internal
  475. # golang.org/x/sys v0.0.0-20190904154756-749cb33beabd
  476. golang.org/x/sys/windows
  477. golang.org/x/sys/windows/svc
  478. golang.org/x/sys/cpu
  479. golang.org/x/sys/unix
  480. # golang.org/x/text v0.3.2
  481. golang.org/x/text/transform
  482. golang.org/x/text/encoding
  483. golang.org/x/text/encoding/charmap
  484. golang.org/x/text/encoding/htmlindex
  485. golang.org/x/text/language
  486. golang.org/x/text/unicode/norm
  487. golang.org/x/text/secure/bidirule
  488. golang.org/x/text/unicode/bidi
  489. golang.org/x/text/encoding/internal/identifier
  490. golang.org/x/text/encoding/internal
  491. golang.org/x/text/encoding/japanese
  492. golang.org/x/text/encoding/korean
  493. golang.org/x/text/encoding/simplifiedchinese
  494. golang.org/x/text/encoding/traditionalchinese
  495. golang.org/x/text/encoding/unicode
  496. golang.org/x/text/internal/language
  497. golang.org/x/text/internal/language/compact
  498. golang.org/x/text/internal/utf8internal
  499. golang.org/x/text/runes
  500. golang.org/x/text/internal/tag
  501. golang.org/x/text/width
  502. # golang.org/x/tools v0.0.0-20190903163617-be0da057c5e3
  503. golang.org/x/tools/go/ast/astutil
  504. golang.org/x/tools/go/packages
  505. golang.org/x/tools/imports
  506. golang.org/x/tools/go/loader
  507. golang.org/x/tools/go/gcexportdata
  508. golang.org/x/tools/go/internal/packagesdriver
  509. golang.org/x/tools/internal/gopathwalk
  510. golang.org/x/tools/internal/semver
  511. golang.org/x/tools/internal/imports
  512. golang.org/x/tools/go/buildutil
  513. golang.org/x/tools/go/internal/cgo
  514. golang.org/x/tools/go/internal/gcimporter
  515. golang.org/x/tools/internal/fastwalk
  516. golang.org/x/tools/internal/module
  517. # google.golang.org/appengine v1.6.2
  518. google.golang.org/appengine/cloudsql
  519. google.golang.org/appengine/urlfetch
  520. google.golang.org/appengine/internal
  521. google.golang.org/appengine/internal/urlfetch
  522. google.golang.org/appengine/internal/base
  523. google.golang.org/appengine/internal/datastore
  524. google.golang.org/appengine/internal/log
  525. google.golang.org/appengine/internal/remote_api
  526. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  527. gopkg.in/alexcesaro/quotedprintable.v3
  528. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  529. gopkg.in/asn1-ber.v1
  530. # gopkg.in/editorconfig/editorconfig-core-go.v1 v1.3.0
  531. gopkg.in/editorconfig/editorconfig-core-go.v1
  532. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  533. gopkg.in/gomail.v2
  534. # gopkg.in/ini.v1 v1.46.0
  535. gopkg.in/ini.v1
  536. # gopkg.in/ldap.v3 v3.0.2
  537. gopkg.in/ldap.v3
  538. # gopkg.in/src-d/go-billy.v4 v4.3.2
  539. gopkg.in/src-d/go-billy.v4/osfs
  540. gopkg.in/src-d/go-billy.v4
  541. gopkg.in/src-d/go-billy.v4/util
  542. gopkg.in/src-d/go-billy.v4/helper/chroot
  543. gopkg.in/src-d/go-billy.v4/helper/polyfill
  544. # gopkg.in/src-d/go-git.v4 v4.13.1
  545. gopkg.in/src-d/go-git.v4
  546. gopkg.in/src-d/go-git.v4/config
  547. gopkg.in/src-d/go-git.v4/plumbing
  548. gopkg.in/src-d/go-git.v4/plumbing/cache
  549. gopkg.in/src-d/go-git.v4/plumbing/filemode
  550. gopkg.in/src-d/go-git.v4/plumbing/format/commitgraph
  551. gopkg.in/src-d/go-git.v4/plumbing/object
  552. gopkg.in/src-d/go-git.v4/plumbing/object/commitgraph
  553. gopkg.in/src-d/go-git.v4/storage/filesystem
  554. gopkg.in/src-d/go-git.v4/internal/revision
  555. gopkg.in/src-d/go-git.v4/plumbing/format/gitignore
  556. gopkg.in/src-d/go-git.v4/plumbing/format/index
  557. gopkg.in/src-d/go-git.v4/plumbing/format/packfile
  558. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp
  559. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/capability
  560. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband
  561. gopkg.in/src-d/go-git.v4/plumbing/revlist
  562. gopkg.in/src-d/go-git.v4/plumbing/storer
  563. gopkg.in/src-d/go-git.v4/plumbing/transport
  564. gopkg.in/src-d/go-git.v4/plumbing/transport/client
  565. gopkg.in/src-d/go-git.v4/storage
  566. gopkg.in/src-d/go-git.v4/storage/memory
  567. gopkg.in/src-d/go-git.v4/utils/diff
  568. gopkg.in/src-d/go-git.v4/utils/ioutil
  569. gopkg.in/src-d/go-git.v4/utils/merkletrie
  570. gopkg.in/src-d/go-git.v4/utils/merkletrie/filesystem
  571. gopkg.in/src-d/go-git.v4/utils/merkletrie/index
  572. gopkg.in/src-d/go-git.v4/utils/merkletrie/noder
  573. gopkg.in/src-d/go-git.v4/internal/url
  574. gopkg.in/src-d/go-git.v4/plumbing/format/config
  575. gopkg.in/src-d/go-git.v4/utils/binary
  576. gopkg.in/src-d/go-git.v4/plumbing/format/diff
  577. gopkg.in/src-d/go-git.v4/plumbing/format/idxfile
  578. gopkg.in/src-d/go-git.v4/plumbing/format/objfile
  579. gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit
  580. gopkg.in/src-d/go-git.v4/plumbing/format/pktline
  581. gopkg.in/src-d/go-git.v4/plumbing/transport/file
  582. gopkg.in/src-d/go-git.v4/plumbing/transport/git
  583. gopkg.in/src-d/go-git.v4/plumbing/transport/http
  584. gopkg.in/src-d/go-git.v4/plumbing/transport/ssh
  585. gopkg.in/src-d/go-git.v4/utils/merkletrie/internal/frame
  586. gopkg.in/src-d/go-git.v4/plumbing/transport/internal/common
  587. gopkg.in/src-d/go-git.v4/plumbing/transport/server
  588. # gopkg.in/testfixtures.v2 v2.5.0
  589. gopkg.in/testfixtures.v2
  590. # gopkg.in/warnings.v0 v0.1.2
  591. gopkg.in/warnings.v0
  592. # gopkg.in/yaml.v2 v2.2.2
  593. gopkg.in/yaml.v2
  594. # mvdan.cc/xurls/v2 v2.0.0
  595. mvdan.cc/xurls/v2
  596. # strk.kbt.io/projects/go/libravatar v0.0.0-20160628055650-5eed7bff870a
  597. strk.kbt.io/projects/go/libravatar
  598. # xorm.io/builder v0.3.5
  599. xorm.io/builder
  600. # xorm.io/core v0.7.0
  601. xorm.io/core