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 32 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
6 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
5 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
5 years ago
Add support for migrating from Gitlab (#9084) * First stab at a Gitlab migrations interface. * Modify JS to show migration for Gitlab * Properly strip out #gitlab tag from repo name * Working Gitlab migrations! Still need to figure out how to hide tokens/etc from showing up in opts.CloneAddr * Try #2 at trying to hide credentials. CloneAddr was being used as OriginalURL. Now passing OriginalURL through from the form and saving it. * Add go-gitlab dependency * Vendor go-gitlab * Use gitlab.BasicAuthClient Correct CloneURL. This should be functioning! Previous commits fixed "Migrated from" from including the migration credentials. * Replaced repoPath with repoID globally. RepoID is grabbed in NewGitlabDownloader * Logging touchup * Properly set private repo status. Properly set milestone deadline time. Consistently use Gitlab username for 'Name'. * Add go-gitlab vendor cache * Fix PR migrations: - Count of issues is kept to set a non-conflicting PR.ID - Bool is used to tell whether to fetch Issue or PR comments * Ensure merged PRs are closed and set with the proper time * Remove copyright and some commented code * Rip out '#gitlab' based self-hosted Gitlab support * Hide given credentials for migrated repos. CloneAddr was being saved as OriginalURL. Now passing OriginalURL through from the form and saving it in it's place * Use asset.URL directly, no point in parsing. Opened PRs should fall through to false. * Fix importing Milestones. Allow importing using Personal Tokens or anonymous access. * Fix Gitlab Milestone migration if DueDate isn't set * Empty Milestone due dates properly return nil, not zero time * Add GITLAB_READ_TOKEN to drone unit-test step * Add working gitlab_test.go. A Personal Access Token, given in env variable GITLAB_READ_TOKEN is required to run the test. * Fix linting issues * Add modified JS files * Remove pre-build JS files * Only merged PRs are marged as merged/closed * Test topics * Skip test if gitlab is inaccessible * Grab personal token from username, not password. Matches Github migration implementation * Add SetContext() to GitlabDownloader. * Checking Updated field in Issues. * Actually fetch Issue Updated time from Gitlab * Add Gitlab migration GetReviews() stub * Fix Patch and Clone URLs * check Updated too * fix mod * make vendor with go1.14 Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898
  1. # cloud.google.com/go v0.45.0
  2. ## explicit
  3. cloud.google.com/go/compute/metadata
  4. # gitea.com/jolheiser/gitea-vet v0.1.0
  5. ## explicit
  6. gitea.com/jolheiser/gitea-vet
  7. gitea.com/jolheiser/gitea-vet/checks
  8. # gitea.com/lunny/levelqueue v0.3.0
  9. ## explicit
  10. gitea.com/lunny/levelqueue
  11. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  12. ## explicit
  13. gitea.com/macaron/binding
  14. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  15. ## explicit
  16. gitea.com/macaron/cache
  17. gitea.com/macaron/cache/memcache
  18. gitea.com/macaron/cache/redis
  19. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  20. ## explicit
  21. gitea.com/macaron/captcha
  22. # gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4
  23. ## explicit
  24. gitea.com/macaron/cors
  25. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  26. ## explicit
  27. gitea.com/macaron/csrf
  28. # gitea.com/macaron/gzip v0.0.0-20191118041502-506895b47aae
  29. ## explicit
  30. gitea.com/macaron/gzip
  31. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  32. ## explicit
  33. gitea.com/macaron/i18n
  34. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  35. ## explicit
  36. gitea.com/macaron/inject
  37. # gitea.com/macaron/macaron v1.4.0
  38. ## explicit
  39. gitea.com/macaron/macaron
  40. # gitea.com/macaron/session v0.0.0-20191207215012-613cebf0674d
  41. ## explicit
  42. gitea.com/macaron/session
  43. gitea.com/macaron/session/couchbase
  44. gitea.com/macaron/session/memcache
  45. gitea.com/macaron/session/mysql
  46. gitea.com/macaron/session/nodb
  47. gitea.com/macaron/session/postgres
  48. gitea.com/macaron/session/redis
  49. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  50. ## explicit
  51. gitea.com/macaron/toolbox
  52. # github.com/BurntSushi/toml v0.3.1
  53. ## explicit
  54. github.com/BurntSushi/toml
  55. # github.com/PuerkitoBio/goquery v1.5.0
  56. ## explicit
  57. github.com/PuerkitoBio/goquery
  58. # github.com/PuerkitoBio/purell v1.1.1
  59. github.com/PuerkitoBio/purell
  60. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  61. github.com/PuerkitoBio/urlesc
  62. # github.com/RoaringBitmap/roaring v0.4.23
  63. ## explicit
  64. github.com/RoaringBitmap/roaring
  65. # github.com/andybalholm/cascadia v1.0.0
  66. github.com/andybalholm/cascadia
  67. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  68. github.com/anmitsu/go-shlex
  69. # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
  70. github.com/asaskevich/govalidator
  71. # github.com/aymerick/douceur v0.2.0
  72. github.com/aymerick/douceur/css
  73. # github.com/beorn7/perks v1.0.1
  74. github.com/beorn7/perks/quantile
  75. # github.com/bgentry/speakeasy v0.1.0
  76. ## explicit
  77. # github.com/blevesearch/bleve v1.0.7
  78. ## explicit
  79. github.com/blevesearch/bleve
  80. github.com/blevesearch/bleve/analysis
  81. github.com/blevesearch/bleve/analysis/analyzer/custom
  82. github.com/blevesearch/bleve/analysis/analyzer/keyword
  83. github.com/blevesearch/bleve/analysis/analyzer/standard
  84. github.com/blevesearch/bleve/analysis/datetime/flexible
  85. github.com/blevesearch/bleve/analysis/datetime/optional
  86. github.com/blevesearch/bleve/analysis/lang/en
  87. github.com/blevesearch/bleve/analysis/token/lowercase
  88. github.com/blevesearch/bleve/analysis/token/porter
  89. github.com/blevesearch/bleve/analysis/token/stop
  90. github.com/blevesearch/bleve/analysis/token/unicodenorm
  91. github.com/blevesearch/bleve/analysis/tokenizer/single
  92. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  93. github.com/blevesearch/bleve/document
  94. github.com/blevesearch/bleve/geo
  95. github.com/blevesearch/bleve/index
  96. github.com/blevesearch/bleve/index/scorch
  97. github.com/blevesearch/bleve/index/scorch/mergeplan
  98. github.com/blevesearch/bleve/index/scorch/segment
  99. github.com/blevesearch/bleve/index/store
  100. github.com/blevesearch/bleve/index/store/boltdb
  101. github.com/blevesearch/bleve/index/store/gtreap
  102. github.com/blevesearch/bleve/index/upsidedown
  103. github.com/blevesearch/bleve/mapping
  104. github.com/blevesearch/bleve/numeric
  105. github.com/blevesearch/bleve/registry
  106. github.com/blevesearch/bleve/search
  107. github.com/blevesearch/bleve/search/collector
  108. github.com/blevesearch/bleve/search/facet
  109. github.com/blevesearch/bleve/search/highlight
  110. github.com/blevesearch/bleve/search/highlight/format/html
  111. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  112. github.com/blevesearch/bleve/search/highlight/highlighter/html
  113. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  114. github.com/blevesearch/bleve/search/query
  115. github.com/blevesearch/bleve/search/scorer
  116. github.com/blevesearch/bleve/search/searcher
  117. github.com/blevesearch/bleve/size
  118. # github.com/blevesearch/go-porterstemmer v1.0.3
  119. github.com/blevesearch/go-porterstemmer
  120. # github.com/blevesearch/mmap-go v1.0.2
  121. github.com/blevesearch/mmap-go
  122. # github.com/blevesearch/segment v0.9.0
  123. github.com/blevesearch/segment
  124. # github.com/blevesearch/snowballstem v0.9.0
  125. github.com/blevesearch/snowballstem
  126. github.com/blevesearch/snowballstem/english
  127. # github.com/blevesearch/zap/v11 v11.0.7
  128. github.com/blevesearch/zap/v11
  129. # github.com/blevesearch/zap/v12 v12.0.7
  130. github.com/blevesearch/zap/v12
  131. # github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
  132. github.com/boombuler/barcode
  133. github.com/boombuler/barcode/qr
  134. github.com/boombuler/barcode/utils
  135. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  136. github.com/bradfitz/gomemcache/memcache
  137. # github.com/chris-ramon/douceur v0.2.0
  138. github.com/chris-ramon/douceur/parser
  139. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  140. ## explicit
  141. github.com/couchbase/gomemcached
  142. github.com/couchbase/gomemcached/client
  143. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  144. github.com/couchbase/goutils/logging
  145. github.com/couchbase/goutils/scramsha
  146. # github.com/couchbase/vellum v1.0.1
  147. github.com/couchbase/vellum
  148. github.com/couchbase/vellum/levenshtein
  149. github.com/couchbase/vellum/regexp
  150. github.com/couchbase/vellum/utf8
  151. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  152. github.com/couchbaselabs/go-couchbase
  153. # github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d
  154. github.com/cpuguy83/go-md2man/v2/md2man
  155. # github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d
  156. ## explicit
  157. # github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
  158. ## explicit
  159. # github.com/cznic/strutil v0.0.0-20181122101858-275e90344537
  160. ## explicit
  161. # github.com/davecgh/go-spew v1.1.1
  162. github.com/davecgh/go-spew/spew
  163. # github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc
  164. ## explicit
  165. github.com/denisenkom/go-mssqldb
  166. github.com/denisenkom/go-mssqldb/internal/cp
  167. github.com/denisenkom/go-mssqldb/internal/decimal
  168. github.com/denisenkom/go-mssqldb/internal/querytext
  169. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  170. ## explicit
  171. github.com/dgrijalva/jwt-go
  172. # github.com/dustin/go-humanize v1.0.0
  173. ## explicit
  174. github.com/dustin/go-humanize
  175. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  176. ## explicit
  177. github.com/editorconfig/editorconfig-core-go/v2
  178. # github.com/emirpasic/gods v1.12.0
  179. ## explicit
  180. github.com/emirpasic/gods/containers
  181. github.com/emirpasic/gods/lists
  182. github.com/emirpasic/gods/lists/arraylist
  183. github.com/emirpasic/gods/trees
  184. github.com/emirpasic/gods/trees/binaryheap
  185. github.com/emirpasic/gods/utils
  186. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  187. ## explicit
  188. github.com/ethantkoenig/rupture
  189. # github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
  190. ## explicit
  191. # github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
  192. ## explicit
  193. # github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870
  194. ## explicit
  195. # github.com/fatih/color v1.9.0
  196. github.com/fatih/color
  197. # github.com/fatih/structtag v1.2.0
  198. github.com/fatih/structtag
  199. # github.com/fsnotify/fsnotify v1.4.7
  200. github.com/fsnotify/fsnotify
  201. # github.com/gliderlabs/ssh v0.2.2
  202. ## explicit
  203. github.com/gliderlabs/ssh
  204. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  205. ## explicit
  206. github.com/glycerine/go-unsnap-stream
  207. # github.com/go-enry/go-enry/v2 v2.3.0
  208. ## explicit
  209. github.com/go-enry/go-enry/v2
  210. github.com/go-enry/go-enry/v2/data
  211. github.com/go-enry/go-enry/v2/data/rule
  212. github.com/go-enry/go-enry/v2/internal/tokenizer
  213. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  214. github.com/go-enry/go-enry/v2/regex
  215. # github.com/go-enry/go-oniguruma v1.2.0
  216. github.com/go-enry/go-oniguruma
  217. # github.com/go-git/gcfg v1.5.0
  218. github.com/go-git/gcfg
  219. github.com/go-git/gcfg/scanner
  220. github.com/go-git/gcfg/token
  221. github.com/go-git/gcfg/types
  222. # github.com/go-git/go-billy/v5 v5.0.0
  223. ## explicit
  224. github.com/go-git/go-billy/v5
  225. github.com/go-git/go-billy/v5/helper/chroot
  226. github.com/go-git/go-billy/v5/helper/polyfill
  227. github.com/go-git/go-billy/v5/osfs
  228. github.com/go-git/go-billy/v5/util
  229. # github.com/go-git/go-git/v5 v5.0.0
  230. ## explicit
  231. github.com/go-git/go-git/v5
  232. github.com/go-git/go-git/v5/config
  233. github.com/go-git/go-git/v5/internal/revision
  234. github.com/go-git/go-git/v5/internal/url
  235. github.com/go-git/go-git/v5/plumbing
  236. github.com/go-git/go-git/v5/plumbing/cache
  237. github.com/go-git/go-git/v5/plumbing/filemode
  238. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  239. github.com/go-git/go-git/v5/plumbing/format/config
  240. github.com/go-git/go-git/v5/plumbing/format/diff
  241. github.com/go-git/go-git/v5/plumbing/format/gitignore
  242. github.com/go-git/go-git/v5/plumbing/format/idxfile
  243. github.com/go-git/go-git/v5/plumbing/format/index
  244. github.com/go-git/go-git/v5/plumbing/format/objfile
  245. github.com/go-git/go-git/v5/plumbing/format/packfile
  246. github.com/go-git/go-git/v5/plumbing/format/pktline
  247. github.com/go-git/go-git/v5/plumbing/object
  248. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  249. github.com/go-git/go-git/v5/plumbing/protocol/packp
  250. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  251. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  252. github.com/go-git/go-git/v5/plumbing/revlist
  253. github.com/go-git/go-git/v5/plumbing/storer
  254. github.com/go-git/go-git/v5/plumbing/transport
  255. github.com/go-git/go-git/v5/plumbing/transport/client
  256. github.com/go-git/go-git/v5/plumbing/transport/file
  257. github.com/go-git/go-git/v5/plumbing/transport/git
  258. github.com/go-git/go-git/v5/plumbing/transport/http
  259. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  260. github.com/go-git/go-git/v5/plumbing/transport/server
  261. github.com/go-git/go-git/v5/plumbing/transport/ssh
  262. github.com/go-git/go-git/v5/storage
  263. github.com/go-git/go-git/v5/storage/filesystem
  264. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  265. github.com/go-git/go-git/v5/storage/memory
  266. github.com/go-git/go-git/v5/utils/binary
  267. github.com/go-git/go-git/v5/utils/diff
  268. github.com/go-git/go-git/v5/utils/ioutil
  269. github.com/go-git/go-git/v5/utils/merkletrie
  270. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  271. github.com/go-git/go-git/v5/utils/merkletrie/index
  272. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  273. github.com/go-git/go-git/v5/utils/merkletrie/noder
  274. # github.com/go-ini/ini v1.56.0
  275. ## explicit
  276. github.com/go-ini/ini
  277. # github.com/go-openapi/analysis v0.19.5
  278. github.com/go-openapi/analysis
  279. github.com/go-openapi/analysis/internal
  280. # github.com/go-openapi/errors v0.19.2
  281. github.com/go-openapi/errors
  282. # github.com/go-openapi/inflect v0.19.0
  283. github.com/go-openapi/inflect
  284. # github.com/go-openapi/jsonpointer v0.19.3
  285. github.com/go-openapi/jsonpointer
  286. # github.com/go-openapi/jsonreference v0.19.3
  287. ## explicit
  288. github.com/go-openapi/jsonreference
  289. # github.com/go-openapi/loads v0.19.3
  290. github.com/go-openapi/loads
  291. github.com/go-openapi/loads/fmts
  292. # github.com/go-openapi/runtime v0.19.5
  293. github.com/go-openapi/runtime
  294. github.com/go-openapi/runtime/logger
  295. github.com/go-openapi/runtime/middleware
  296. github.com/go-openapi/runtime/middleware/denco
  297. github.com/go-openapi/runtime/middleware/header
  298. github.com/go-openapi/runtime/middleware/untyped
  299. github.com/go-openapi/runtime/security
  300. # github.com/go-openapi/spec v0.19.3
  301. github.com/go-openapi/spec
  302. # github.com/go-openapi/strfmt v0.19.3
  303. github.com/go-openapi/strfmt
  304. # github.com/go-openapi/swag v0.19.5
  305. github.com/go-openapi/swag
  306. # github.com/go-openapi/validate v0.19.3
  307. github.com/go-openapi/validate
  308. # github.com/go-redis/redis v6.15.2+incompatible
  309. ## explicit
  310. github.com/go-redis/redis
  311. github.com/go-redis/redis/internal
  312. github.com/go-redis/redis/internal/consistenthash
  313. github.com/go-redis/redis/internal/hashtag
  314. github.com/go-redis/redis/internal/pool
  315. github.com/go-redis/redis/internal/proto
  316. github.com/go-redis/redis/internal/util
  317. # github.com/go-sql-driver/mysql v1.4.1
  318. ## explicit
  319. github.com/go-sql-driver/mysql
  320. # github.com/go-stack/stack v1.8.0
  321. github.com/go-stack/stack
  322. # github.com/go-swagger/go-swagger v0.21.0
  323. ## explicit
  324. github.com/go-swagger/go-swagger/cmd/swagger
  325. github.com/go-swagger/go-swagger/cmd/swagger/commands
  326. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  327. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  328. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  329. github.com/go-swagger/go-swagger/codescan
  330. github.com/go-swagger/go-swagger/generator
  331. github.com/go-swagger/go-swagger/scan
  332. # github.com/gobwas/glob v0.2.3
  333. ## explicit
  334. github.com/gobwas/glob
  335. github.com/gobwas/glob/compiler
  336. github.com/gobwas/glob/match
  337. github.com/gobwas/glob/syntax
  338. github.com/gobwas/glob/syntax/ast
  339. github.com/gobwas/glob/syntax/lexer
  340. github.com/gobwas/glob/util/runes
  341. github.com/gobwas/glob/util/strings
  342. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  343. ## explicit
  344. github.com/gogs/chardet
  345. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  346. ## explicit
  347. github.com/gogs/cron
  348. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  349. github.com/golang-sql/civil
  350. # github.com/golang/protobuf v1.4.1
  351. ## explicit
  352. github.com/golang/protobuf/proto
  353. # github.com/golang/snappy v0.0.1
  354. github.com/golang/snappy
  355. # github.com/google/go-github/v24 v24.0.1
  356. ## explicit
  357. github.com/google/go-github/v24/github
  358. # github.com/google/go-querystring v1.0.0
  359. github.com/google/go-querystring/query
  360. # github.com/gorilla/context v1.1.1
  361. ## explicit
  362. github.com/gorilla/context
  363. # github.com/gorilla/css v1.0.0
  364. github.com/gorilla/css/scanner
  365. # github.com/gorilla/handlers v1.4.2
  366. github.com/gorilla/handlers
  367. # github.com/gorilla/mux v1.6.2
  368. github.com/gorilla/mux
  369. # github.com/gorilla/securecookie v1.1.1
  370. github.com/gorilla/securecookie
  371. # github.com/gorilla/sessions v1.2.0
  372. github.com/gorilla/sessions
  373. # github.com/hashicorp/go-cleanhttp v0.5.1
  374. github.com/hashicorp/go-cleanhttp
  375. # github.com/hashicorp/go-retryablehttp v0.6.6
  376. ## explicit
  377. github.com/hashicorp/go-retryablehttp
  378. # github.com/hashicorp/hcl v1.0.0
  379. github.com/hashicorp/hcl
  380. github.com/hashicorp/hcl/hcl/ast
  381. github.com/hashicorp/hcl/hcl/parser
  382. github.com/hashicorp/hcl/hcl/printer
  383. github.com/hashicorp/hcl/hcl/scanner
  384. github.com/hashicorp/hcl/hcl/strconv
  385. github.com/hashicorp/hcl/hcl/token
  386. github.com/hashicorp/hcl/json/parser
  387. github.com/hashicorp/hcl/json/scanner
  388. github.com/hashicorp/hcl/json/token
  389. # github.com/huandu/xstrings v1.3.0
  390. ## explicit
  391. github.com/huandu/xstrings
  392. # github.com/issue9/assert v1.3.2
  393. ## explicit
  394. # github.com/issue9/identicon v1.0.1
  395. ## explicit
  396. github.com/issue9/identicon
  397. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  398. ## explicit
  399. github.com/jaytaylor/html2text
  400. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  401. github.com/jbenet/go-context/io
  402. # github.com/jessevdk/go-flags v1.4.0
  403. github.com/jessevdk/go-flags
  404. # github.com/jmhodges/levigo v1.0.0
  405. ## explicit
  406. # github.com/joho/godotenv v1.3.0
  407. ## explicit
  408. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  409. ## explicit
  410. github.com/kballard/go-shellquote
  411. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  412. github.com/kevinburke/ssh_config
  413. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  414. ## explicit
  415. github.com/keybase/go-crypto/brainpool
  416. github.com/keybase/go-crypto/cast5
  417. github.com/keybase/go-crypto/curve25519
  418. github.com/keybase/go-crypto/ed25519
  419. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  420. github.com/keybase/go-crypto/openpgp
  421. github.com/keybase/go-crypto/openpgp/armor
  422. github.com/keybase/go-crypto/openpgp/ecdh
  423. github.com/keybase/go-crypto/openpgp/elgamal
  424. github.com/keybase/go-crypto/openpgp/errors
  425. github.com/keybase/go-crypto/openpgp/packet
  426. github.com/keybase/go-crypto/openpgp/s2k
  427. github.com/keybase/go-crypto/rsa
  428. # github.com/klauspost/compress v1.10.2
  429. ## explicit
  430. github.com/klauspost/compress/flate
  431. github.com/klauspost/compress/gzip
  432. # github.com/kr/pretty v0.1.0
  433. github.com/kr/pretty
  434. # github.com/kr/text v0.2.0
  435. github.com/kr/text
  436. # github.com/lafriks/xormstore v1.3.2
  437. ## explicit
  438. github.com/lafriks/xormstore
  439. github.com/lafriks/xormstore/util
  440. # github.com/lib/pq v1.2.0
  441. ## explicit
  442. github.com/lib/pq
  443. github.com/lib/pq/oid
  444. github.com/lib/pq/scram
  445. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  446. ## explicit
  447. github.com/lunny/dingtalk_webhook
  448. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  449. github.com/lunny/log
  450. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  451. github.com/lunny/nodb
  452. github.com/lunny/nodb/config
  453. github.com/lunny/nodb/store
  454. github.com/lunny/nodb/store/driver
  455. github.com/lunny/nodb/store/goleveldb
  456. # github.com/magiconair/properties v1.8.1
  457. github.com/magiconair/properties
  458. # github.com/mailru/easyjson v0.7.0
  459. ## explicit
  460. github.com/mailru/easyjson
  461. github.com/mailru/easyjson/buffer
  462. github.com/mailru/easyjson/jlexer
  463. github.com/mailru/easyjson/jwriter
  464. # github.com/markbates/goth v1.61.2
  465. ## explicit
  466. github.com/markbates/goth
  467. github.com/markbates/goth/gothic
  468. github.com/markbates/goth/providers/bitbucket
  469. github.com/markbates/goth/providers/discord
  470. github.com/markbates/goth/providers/dropbox
  471. github.com/markbates/goth/providers/facebook
  472. github.com/markbates/goth/providers/gitea
  473. github.com/markbates/goth/providers/github
  474. github.com/markbates/goth/providers/gitlab
  475. github.com/markbates/goth/providers/google
  476. github.com/markbates/goth/providers/nextcloud
  477. github.com/markbates/goth/providers/openidConnect
  478. github.com/markbates/goth/providers/twitter
  479. github.com/markbates/goth/providers/yandex
  480. # github.com/mattn/go-colorable v0.1.4
  481. github.com/mattn/go-colorable
  482. # github.com/mattn/go-isatty v0.0.11
  483. ## explicit
  484. github.com/mattn/go-isatty
  485. # github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d
  486. ## explicit
  487. # github.com/mattn/go-runewidth v0.0.7
  488. github.com/mattn/go-runewidth
  489. # github.com/mattn/go-sqlite3 v1.11.0
  490. ## explicit
  491. github.com/mattn/go-sqlite3
  492. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  493. github.com/matttproud/golang_protobuf_extensions/pbutil
  494. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  495. ## explicit
  496. github.com/mcuadros/go-version
  497. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  498. ## explicit
  499. github.com/mgechev/dots
  500. # github.com/mgechev/revive v1.0.2
  501. ## explicit
  502. github.com/mgechev/revive/formatter
  503. github.com/mgechev/revive/lint
  504. github.com/mgechev/revive/rule
  505. # github.com/microcosm-cc/bluemonday v1.0.3-0.20191119130333-0a75d7616912
  506. ## explicit
  507. github.com/microcosm-cc/bluemonday
  508. # github.com/minio/minio-go v6.0.14+incompatible
  509. ## explicit
  510. github.com/minio/minio-go
  511. github.com/minio/minio-go/pkg/credentials
  512. github.com/minio/minio-go/pkg/encrypt
  513. github.com/minio/minio-go/pkg/s3signer
  514. github.com/minio/minio-go/pkg/s3utils
  515. github.com/minio/minio-go/pkg/set
  516. # github.com/mitchellh/go-homedir v1.1.0
  517. ## explicit
  518. github.com/mitchellh/go-homedir
  519. # github.com/mitchellh/mapstructure v1.1.2
  520. github.com/mitchellh/mapstructure
  521. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  522. github.com/mrjones/oauth
  523. # github.com/mschoch/smat v0.2.0
  524. github.com/mschoch/smat
  525. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  526. ## explicit
  527. github.com/msteinert/pam
  528. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  529. ## explicit
  530. github.com/nfnt/resize
  531. # github.com/niklasfasching/go-org v0.1.9
  532. ## explicit
  533. github.com/niklasfasching/go-org/org
  534. # github.com/olekukonko/tablewriter v0.0.4
  535. github.com/olekukonko/tablewriter
  536. # github.com/oliamb/cutter v0.2.2
  537. ## explicit
  538. github.com/oliamb/cutter
  539. # github.com/olivere/elastic/v7 v7.0.9
  540. ## explicit
  541. github.com/olivere/elastic/v7
  542. github.com/olivere/elastic/v7/config
  543. github.com/olivere/elastic/v7/uritemplates
  544. # github.com/pelletier/go-toml v1.4.0
  545. github.com/pelletier/go-toml
  546. # github.com/philhofer/fwd v1.0.0
  547. github.com/philhofer/fwd
  548. # github.com/pkg/errors v0.9.1
  549. ## explicit
  550. github.com/pkg/errors
  551. # github.com/pmezard/go-difflib v1.0.0
  552. github.com/pmezard/go-difflib/difflib
  553. # github.com/pquerna/otp v1.2.0
  554. ## explicit
  555. github.com/pquerna/otp
  556. github.com/pquerna/otp/hotp
  557. github.com/pquerna/otp/totp
  558. # github.com/prometheus/client_golang v1.1.0
  559. ## explicit
  560. github.com/prometheus/client_golang/prometheus
  561. github.com/prometheus/client_golang/prometheus/internal
  562. github.com/prometheus/client_golang/prometheus/promhttp
  563. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  564. ## explicit
  565. github.com/prometheus/client_model/go
  566. # github.com/prometheus/common v0.6.0
  567. github.com/prometheus/common/expfmt
  568. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  569. github.com/prometheus/common/model
  570. # github.com/prometheus/procfs v0.0.4
  571. ## explicit
  572. github.com/prometheus/procfs
  573. github.com/prometheus/procfs/internal/fs
  574. github.com/prometheus/procfs/internal/util
  575. # github.com/quasoft/websspi v1.0.0
  576. ## explicit
  577. github.com/quasoft/websspi
  578. github.com/quasoft/websspi/secctx
  579. # github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001
  580. ## explicit
  581. # github.com/russross/blackfriday/v2 v2.0.1
  582. github.com/russross/blackfriday/v2
  583. # github.com/satori/go.uuid v1.2.0
  584. ## explicit
  585. github.com/satori/go.uuid
  586. # github.com/sergi/go-diff v1.1.0
  587. ## explicit
  588. github.com/sergi/go-diff/diffmatchpatch
  589. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  590. ## explicit
  591. github.com/shurcooL/httpfs/vfsutil
  592. # github.com/shurcooL/sanitized_anchor_name v1.0.0
  593. github.com/shurcooL/sanitized_anchor_name
  594. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  595. ## explicit
  596. github.com/shurcooL/vfsgen
  597. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  598. github.com/siddontang/go-snappy/snappy
  599. # github.com/spf13/afero v1.2.2
  600. github.com/spf13/afero
  601. github.com/spf13/afero/mem
  602. # github.com/spf13/cast v1.3.0
  603. github.com/spf13/cast
  604. # github.com/spf13/jwalterweatherman v1.1.0
  605. github.com/spf13/jwalterweatherman
  606. # github.com/spf13/pflag v1.0.3
  607. github.com/spf13/pflag
  608. # github.com/spf13/viper v1.4.0
  609. github.com/spf13/viper
  610. # github.com/sqs/goreturns v0.0.0-20181028201513-538ac6014518
  611. ## explicit
  612. # github.com/steveyen/gtreap v0.1.0
  613. github.com/steveyen/gtreap
  614. # github.com/stretchr/testify v1.4.0
  615. ## explicit
  616. github.com/stretchr/testify/assert
  617. github.com/stretchr/testify/require
  618. # github.com/syndtr/goleveldb v1.0.0
  619. github.com/syndtr/goleveldb/leveldb
  620. github.com/syndtr/goleveldb/leveldb/cache
  621. github.com/syndtr/goleveldb/leveldb/comparer
  622. github.com/syndtr/goleveldb/leveldb/errors
  623. github.com/syndtr/goleveldb/leveldb/filter
  624. github.com/syndtr/goleveldb/leveldb/iterator
  625. github.com/syndtr/goleveldb/leveldb/journal
  626. github.com/syndtr/goleveldb/leveldb/memdb
  627. github.com/syndtr/goleveldb/leveldb/opt
  628. github.com/syndtr/goleveldb/leveldb/storage
  629. github.com/syndtr/goleveldb/leveldb/table
  630. github.com/syndtr/goleveldb/leveldb/util
  631. # github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481
  632. ## explicit
  633. # github.com/tinylib/msgp v1.1.2
  634. ## explicit
  635. github.com/tinylib/msgp/msgp
  636. # github.com/toqueteos/trie v1.0.0
  637. github.com/toqueteos/trie
  638. # github.com/toqueteos/webbrowser v1.2.0
  639. github.com/toqueteos/webbrowser
  640. # github.com/tstranex/u2f v1.0.0
  641. ## explicit
  642. github.com/tstranex/u2f
  643. # github.com/unknwon/bra v0.0.0-20200517080246-1e3013ecaff8
  644. ## explicit
  645. # github.com/unknwon/cae v1.0.0
  646. ## explicit
  647. github.com/unknwon/cae
  648. github.com/unknwon/cae/zip
  649. # github.com/unknwon/com v1.0.1
  650. ## explicit
  651. github.com/unknwon/com
  652. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  653. ## explicit
  654. github.com/unknwon/i18n
  655. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  656. ## explicit
  657. github.com/unknwon/paginater
  658. # github.com/urfave/cli v1.22.1
  659. ## explicit
  660. github.com/urfave/cli
  661. # github.com/willf/bitset v1.1.10
  662. github.com/willf/bitset
  663. # github.com/xanzy/go-gitlab v0.31.0
  664. ## explicit
  665. github.com/xanzy/go-gitlab
  666. # github.com/xanzy/ssh-agent v0.2.1
  667. github.com/xanzy/ssh-agent
  668. # github.com/yohcop/openid-go v1.0.0
  669. ## explicit
  670. github.com/yohcop/openid-go
  671. # github.com/yuin/goldmark v1.1.27
  672. ## explicit
  673. github.com/yuin/goldmark
  674. github.com/yuin/goldmark/ast
  675. github.com/yuin/goldmark/extension
  676. github.com/yuin/goldmark/extension/ast
  677. github.com/yuin/goldmark/parser
  678. github.com/yuin/goldmark/renderer
  679. github.com/yuin/goldmark/renderer/html
  680. github.com/yuin/goldmark/text
  681. github.com/yuin/goldmark/util
  682. # github.com/yuin/goldmark-meta v0.0.0-20191126180153-f0638e958b60
  683. ## explicit
  684. github.com/yuin/goldmark-meta
  685. # go.etcd.io/bbolt v1.3.4
  686. go.etcd.io/bbolt
  687. # go.mongodb.org/mongo-driver v1.1.1
  688. go.mongodb.org/mongo-driver/bson
  689. go.mongodb.org/mongo-driver/bson/bsoncodec
  690. go.mongodb.org/mongo-driver/bson/bsonrw
  691. go.mongodb.org/mongo-driver/bson/bsontype
  692. go.mongodb.org/mongo-driver/bson/primitive
  693. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  694. # golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79
  695. ## explicit
  696. golang.org/x/crypto/acme
  697. golang.org/x/crypto/acme/autocert
  698. golang.org/x/crypto/argon2
  699. golang.org/x/crypto/bcrypt
  700. golang.org/x/crypto/blake2b
  701. golang.org/x/crypto/blowfish
  702. golang.org/x/crypto/cast5
  703. golang.org/x/crypto/chacha20
  704. golang.org/x/crypto/curve25519
  705. golang.org/x/crypto/ed25519
  706. golang.org/x/crypto/ed25519/internal/edwards25519
  707. golang.org/x/crypto/internal/subtle
  708. golang.org/x/crypto/md4
  709. golang.org/x/crypto/openpgp
  710. golang.org/x/crypto/openpgp/armor
  711. golang.org/x/crypto/openpgp/elgamal
  712. golang.org/x/crypto/openpgp/errors
  713. golang.org/x/crypto/openpgp/packet
  714. golang.org/x/crypto/openpgp/s2k
  715. golang.org/x/crypto/pbkdf2
  716. golang.org/x/crypto/poly1305
  717. golang.org/x/crypto/scrypt
  718. golang.org/x/crypto/ssh
  719. golang.org/x/crypto/ssh/agent
  720. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  721. golang.org/x/crypto/ssh/knownhosts
  722. # golang.org/x/mod v0.3.0
  723. ## explicit
  724. golang.org/x/mod/module
  725. golang.org/x/mod/semver
  726. # golang.org/x/net v0.0.0-20200506145744-7e3656a0809f
  727. ## explicit
  728. golang.org/x/net/context
  729. golang.org/x/net/context/ctxhttp
  730. golang.org/x/net/html
  731. golang.org/x/net/html/atom
  732. golang.org/x/net/html/charset
  733. golang.org/x/net/http/httpguts
  734. golang.org/x/net/idna
  735. golang.org/x/net/internal/socks
  736. golang.org/x/net/proxy
  737. golang.org/x/net/publicsuffix
  738. # golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  739. ## explicit
  740. golang.org/x/oauth2
  741. golang.org/x/oauth2/google
  742. golang.org/x/oauth2/internal
  743. golang.org/x/oauth2/jws
  744. golang.org/x/oauth2/jwt
  745. # golang.org/x/sys v0.0.0-20200509044756-6aff5f38e54f
  746. ## explicit
  747. golang.org/x/sys/cpu
  748. golang.org/x/sys/internal/unsafeheader
  749. golang.org/x/sys/unix
  750. golang.org/x/sys/windows
  751. golang.org/x/sys/windows/svc
  752. golang.org/x/sys/windows/svc/debug
  753. # golang.org/x/text v0.3.2
  754. ## explicit
  755. golang.org/x/text/encoding
  756. golang.org/x/text/encoding/charmap
  757. golang.org/x/text/encoding/htmlindex
  758. golang.org/x/text/encoding/internal
  759. golang.org/x/text/encoding/internal/identifier
  760. golang.org/x/text/encoding/japanese
  761. golang.org/x/text/encoding/korean
  762. golang.org/x/text/encoding/simplifiedchinese
  763. golang.org/x/text/encoding/traditionalchinese
  764. golang.org/x/text/encoding/unicode
  765. golang.org/x/text/internal/language
  766. golang.org/x/text/internal/language/compact
  767. golang.org/x/text/internal/tag
  768. golang.org/x/text/internal/utf8internal
  769. golang.org/x/text/language
  770. golang.org/x/text/runes
  771. golang.org/x/text/secure/bidirule
  772. golang.org/x/text/transform
  773. golang.org/x/text/unicode/bidi
  774. golang.org/x/text/unicode/norm
  775. golang.org/x/text/width
  776. # golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
  777. ## explicit
  778. golang.org/x/time/rate
  779. # golang.org/x/tools v0.0.0-20200515220128-d3bf790afa53
  780. ## explicit
  781. golang.org/x/tools/cover
  782. golang.org/x/tools/go/analysis
  783. golang.org/x/tools/go/analysis/internal/analysisflags
  784. golang.org/x/tools/go/analysis/internal/facts
  785. golang.org/x/tools/go/analysis/unitchecker
  786. golang.org/x/tools/go/ast/astutil
  787. golang.org/x/tools/go/buildutil
  788. golang.org/x/tools/go/gcexportdata
  789. golang.org/x/tools/go/internal/cgo
  790. golang.org/x/tools/go/internal/gcimporter
  791. golang.org/x/tools/go/internal/packagesdriver
  792. golang.org/x/tools/go/loader
  793. golang.org/x/tools/go/packages
  794. golang.org/x/tools/go/types/objectpath
  795. golang.org/x/tools/imports
  796. golang.org/x/tools/internal/analysisinternal
  797. golang.org/x/tools/internal/event
  798. golang.org/x/tools/internal/event/core
  799. golang.org/x/tools/internal/event/keys
  800. golang.org/x/tools/internal/event/label
  801. golang.org/x/tools/internal/fastwalk
  802. golang.org/x/tools/internal/gocommand
  803. golang.org/x/tools/internal/gopathwalk
  804. golang.org/x/tools/internal/imports
  805. golang.org/x/tools/internal/packagesinternal
  806. # golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  807. golang.org/x/xerrors
  808. golang.org/x/xerrors/internal
  809. # google.golang.org/appengine v1.6.5
  810. ## explicit
  811. google.golang.org/appengine
  812. google.golang.org/appengine/cloudsql
  813. google.golang.org/appengine/internal
  814. google.golang.org/appengine/internal/app_identity
  815. google.golang.org/appengine/internal/base
  816. google.golang.org/appengine/internal/datastore
  817. google.golang.org/appengine/internal/log
  818. google.golang.org/appengine/internal/modules
  819. google.golang.org/appengine/internal/remote_api
  820. google.golang.org/appengine/internal/urlfetch
  821. google.golang.org/appengine/urlfetch
  822. # google.golang.org/protobuf v1.22.0
  823. google.golang.org/protobuf/encoding/prototext
  824. google.golang.org/protobuf/encoding/protowire
  825. google.golang.org/protobuf/internal/descfmt
  826. google.golang.org/protobuf/internal/descopts
  827. google.golang.org/protobuf/internal/detrand
  828. google.golang.org/protobuf/internal/encoding/defval
  829. google.golang.org/protobuf/internal/encoding/messageset
  830. google.golang.org/protobuf/internal/encoding/tag
  831. google.golang.org/protobuf/internal/encoding/text
  832. google.golang.org/protobuf/internal/errors
  833. google.golang.org/protobuf/internal/fieldnum
  834. google.golang.org/protobuf/internal/fieldsort
  835. google.golang.org/protobuf/internal/filedesc
  836. google.golang.org/protobuf/internal/filetype
  837. google.golang.org/protobuf/internal/flags
  838. google.golang.org/protobuf/internal/genname
  839. google.golang.org/protobuf/internal/impl
  840. google.golang.org/protobuf/internal/mapsort
  841. google.golang.org/protobuf/internal/pragma
  842. google.golang.org/protobuf/internal/set
  843. google.golang.org/protobuf/internal/strs
  844. google.golang.org/protobuf/internal/version
  845. google.golang.org/protobuf/proto
  846. google.golang.org/protobuf/reflect/protoreflect
  847. google.golang.org/protobuf/reflect/protoregistry
  848. google.golang.org/protobuf/runtime/protoiface
  849. google.golang.org/protobuf/runtime/protoimpl
  850. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  851. ## explicit
  852. gopkg.in/alexcesaro/quotedprintable.v3
  853. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  854. ## explicit
  855. gopkg.in/asn1-ber.v1
  856. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  857. ## explicit
  858. gopkg.in/gomail.v2
  859. # gopkg.in/ini.v1 v1.52.0
  860. ## explicit
  861. gopkg.in/ini.v1
  862. # gopkg.in/ldap.v3 v3.0.2
  863. ## explicit
  864. gopkg.in/ldap.v3
  865. # gopkg.in/testfixtures.v2 v2.5.0
  866. ## explicit
  867. gopkg.in/testfixtures.v2
  868. # gopkg.in/toqueteos/substring.v1 v1.0.2
  869. gopkg.in/toqueteos/substring.v1
  870. # gopkg.in/warnings.v0 v0.1.2
  871. gopkg.in/warnings.v0
  872. # gopkg.in/yaml.v2 v2.2.8
  873. ## explicit
  874. gopkg.in/yaml.v2
  875. # mvdan.cc/xurls/v2 v2.1.0
  876. ## explicit
  877. mvdan.cc/xurls/v2
  878. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  879. ## explicit
  880. strk.kbt.io/projects/go/libravatar
  881. # xorm.io/builder v0.3.7
  882. ## explicit
  883. xorm.io/builder
  884. # xorm.io/xorm v1.0.1
  885. ## explicit
  886. xorm.io/xorm
  887. xorm.io/xorm/caches
  888. xorm.io/xorm/contexts
  889. xorm.io/xorm/convert
  890. xorm.io/xorm/core
  891. xorm.io/xorm/dialects
  892. xorm.io/xorm/internal/json
  893. xorm.io/xorm/internal/statements
  894. xorm.io/xorm/internal/utils
  895. xorm.io/xorm/log
  896. xorm.io/xorm/names
  897. xorm.io/xorm/schemas
  898. xorm.io/xorm/tags