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 45 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
3 years ago
3 years ago
5 years ago
5 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
6 years ago
5 years ago
5 years ago
5 years ago
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
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
6 years ago
3 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
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251
  1. # cloud.google.com/go v0.45.0
  2. ## explicit
  3. cloud.google.com/go/compute/metadata
  4. cloud.google.com/go/iam
  5. cloud.google.com/go/internal/optional
  6. cloud.google.com/go/internal/version
  7. cloud.google.com/go/pubsub
  8. cloud.google.com/go/pubsub/apiv1
  9. cloud.google.com/go/pubsub/internal/distribution
  10. # gitea.com/jolheiser/gitea-vet v0.1.0
  11. ## explicit
  12. gitea.com/jolheiser/gitea-vet
  13. gitea.com/jolheiser/gitea-vet/checks
  14. # gitea.com/lunny/levelqueue v0.3.0
  15. ## explicit
  16. gitea.com/lunny/levelqueue
  17. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  18. ## explicit
  19. gitea.com/macaron/binding
  20. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  21. ## explicit
  22. gitea.com/macaron/cache
  23. gitea.com/macaron/cache/memcache
  24. gitea.com/macaron/cache/redis
  25. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  26. ## explicit
  27. gitea.com/macaron/captcha
  28. # gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4
  29. ## explicit
  30. gitea.com/macaron/cors
  31. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  32. ## explicit
  33. gitea.com/macaron/csrf
  34. # gitea.com/macaron/gzip v0.0.0-20191118041502-506895b47aae
  35. ## explicit
  36. gitea.com/macaron/gzip
  37. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  38. ## explicit
  39. gitea.com/macaron/i18n
  40. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  41. ## explicit
  42. gitea.com/macaron/inject
  43. # gitea.com/macaron/macaron v1.4.0
  44. ## explicit
  45. gitea.com/macaron/macaron
  46. # gitea.com/macaron/session v0.0.0-20191207215012-613cebf0674d
  47. ## explicit
  48. gitea.com/macaron/session
  49. gitea.com/macaron/session/couchbase
  50. gitea.com/macaron/session/memcache
  51. gitea.com/macaron/session/mysql
  52. gitea.com/macaron/session/nodb
  53. gitea.com/macaron/session/postgres
  54. gitea.com/macaron/session/redis
  55. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  56. ## explicit
  57. gitea.com/macaron/toolbox
  58. # github.com/360EntSecGroup-Skylar/excelize/v2 v2.0.2
  59. ## explicit
  60. github.com/360EntSecGroup-Skylar/excelize/v2
  61. # github.com/BurntSushi/toml v0.3.1
  62. ## explicit
  63. github.com/BurntSushi/toml
  64. # github.com/PuerkitoBio/goquery v1.5.0
  65. ## explicit
  66. github.com/PuerkitoBio/goquery
  67. # github.com/PuerkitoBio/purell v1.1.1
  68. github.com/PuerkitoBio/purell
  69. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  70. github.com/PuerkitoBio/urlesc
  71. # github.com/RichardKnop/logging v0.0.0-20181101035820-b1d5d44c82d6
  72. github.com/RichardKnop/logging
  73. # github.com/RichardKnop/machinery v1.6.9
  74. ## explicit
  75. github.com/RichardKnop/machinery/v1
  76. github.com/RichardKnop/machinery/v1/backends/amqp
  77. github.com/RichardKnop/machinery/v1/backends/dynamodb
  78. github.com/RichardKnop/machinery/v1/backends/eager
  79. github.com/RichardKnop/machinery/v1/backends/iface
  80. github.com/RichardKnop/machinery/v1/backends/memcache
  81. github.com/RichardKnop/machinery/v1/backends/mongo
  82. github.com/RichardKnop/machinery/v1/backends/null
  83. github.com/RichardKnop/machinery/v1/backends/redis
  84. github.com/RichardKnop/machinery/v1/backends/result
  85. github.com/RichardKnop/machinery/v1/brokers/amqp
  86. github.com/RichardKnop/machinery/v1/brokers/eager
  87. github.com/RichardKnop/machinery/v1/brokers/errs
  88. github.com/RichardKnop/machinery/v1/brokers/gcppubsub
  89. github.com/RichardKnop/machinery/v1/brokers/iface
  90. github.com/RichardKnop/machinery/v1/brokers/redis
  91. github.com/RichardKnop/machinery/v1/brokers/sqs
  92. github.com/RichardKnop/machinery/v1/common
  93. github.com/RichardKnop/machinery/v1/config
  94. github.com/RichardKnop/machinery/v1/log
  95. github.com/RichardKnop/machinery/v1/retry
  96. github.com/RichardKnop/machinery/v1/tasks
  97. github.com/RichardKnop/machinery/v1/tracing
  98. # github.com/RichardKnop/redsync v1.2.0
  99. github.com/RichardKnop/redsync
  100. # github.com/RoaringBitmap/roaring v0.4.23
  101. ## explicit
  102. github.com/RoaringBitmap/roaring
  103. # github.com/alecthomas/chroma v0.10.0
  104. ## explicit
  105. github.com/alecthomas/chroma
  106. github.com/alecthomas/chroma/formatters/html
  107. github.com/alecthomas/chroma/lexers
  108. github.com/alecthomas/chroma/lexers/a
  109. github.com/alecthomas/chroma/lexers/b
  110. github.com/alecthomas/chroma/lexers/c
  111. github.com/alecthomas/chroma/lexers/circular
  112. github.com/alecthomas/chroma/lexers/d
  113. github.com/alecthomas/chroma/lexers/e
  114. github.com/alecthomas/chroma/lexers/f
  115. github.com/alecthomas/chroma/lexers/g
  116. github.com/alecthomas/chroma/lexers/h
  117. github.com/alecthomas/chroma/lexers/i
  118. github.com/alecthomas/chroma/lexers/internal
  119. github.com/alecthomas/chroma/lexers/j
  120. github.com/alecthomas/chroma/lexers/k
  121. github.com/alecthomas/chroma/lexers/l
  122. github.com/alecthomas/chroma/lexers/m
  123. github.com/alecthomas/chroma/lexers/n
  124. github.com/alecthomas/chroma/lexers/o
  125. github.com/alecthomas/chroma/lexers/p
  126. github.com/alecthomas/chroma/lexers/q
  127. github.com/alecthomas/chroma/lexers/r
  128. github.com/alecthomas/chroma/lexers/s
  129. github.com/alecthomas/chroma/lexers/t
  130. github.com/alecthomas/chroma/lexers/v
  131. github.com/alecthomas/chroma/lexers/w
  132. github.com/alecthomas/chroma/lexers/x
  133. github.com/alecthomas/chroma/lexers/y
  134. github.com/alecthomas/chroma/lexers/z
  135. github.com/alecthomas/chroma/styles
  136. # github.com/alibabacloud-go/alibabacloud-gateway-spi v0.0.4
  137. github.com/alibabacloud-go/alibabacloud-gateway-spi/client
  138. # github.com/alibabacloud-go/darabonba-openapi v0.1.18
  139. ## explicit
  140. github.com/alibabacloud-go/darabonba-openapi/client
  141. # github.com/alibabacloud-go/debug v0.0.0-20190504072949-9472017b5c68
  142. github.com/alibabacloud-go/debug/debug
  143. # github.com/alibabacloud-go/dysmsapi-20170525/v2 v2.0.9
  144. ## explicit
  145. github.com/alibabacloud-go/dysmsapi-20170525/v2/client
  146. # github.com/alibabacloud-go/endpoint-util v1.1.0
  147. github.com/alibabacloud-go/endpoint-util/service
  148. # github.com/alibabacloud-go/openapi-util v0.0.11
  149. github.com/alibabacloud-go/openapi-util/service
  150. # github.com/alibabacloud-go/tea v1.1.17
  151. ## explicit
  152. github.com/alibabacloud-go/tea/tea
  153. github.com/alibabacloud-go/tea/utils
  154. # github.com/alibabacloud-go/tea-utils v1.4.3
  155. ## explicit
  156. github.com/alibabacloud-go/tea-utils/service
  157. # github.com/alibabacloud-go/tea-xml v1.1.2
  158. ## explicit
  159. github.com/alibabacloud-go/tea-xml/service
  160. # github.com/aliyun/credentials-go v1.1.2
  161. github.com/aliyun/credentials-go/credentials
  162. github.com/aliyun/credentials-go/credentials/request
  163. github.com/aliyun/credentials-go/credentials/response
  164. github.com/aliyun/credentials-go/credentials/utils
  165. # github.com/andybalholm/cascadia v1.0.0
  166. github.com/andybalholm/cascadia
  167. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  168. github.com/anmitsu/go-shlex
  169. # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
  170. github.com/asaskevich/govalidator
  171. # github.com/aws/aws-sdk-go v1.25.25
  172. github.com/aws/aws-sdk-go/aws
  173. github.com/aws/aws-sdk-go/aws/awserr
  174. github.com/aws/aws-sdk-go/aws/awsutil
  175. github.com/aws/aws-sdk-go/aws/client
  176. github.com/aws/aws-sdk-go/aws/client/metadata
  177. github.com/aws/aws-sdk-go/aws/corehandlers
  178. github.com/aws/aws-sdk-go/aws/credentials
  179. github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds
  180. github.com/aws/aws-sdk-go/aws/credentials/endpointcreds
  181. github.com/aws/aws-sdk-go/aws/credentials/processcreds
  182. github.com/aws/aws-sdk-go/aws/credentials/stscreds
  183. github.com/aws/aws-sdk-go/aws/crr
  184. github.com/aws/aws-sdk-go/aws/csm
  185. github.com/aws/aws-sdk-go/aws/defaults
  186. github.com/aws/aws-sdk-go/aws/ec2metadata
  187. github.com/aws/aws-sdk-go/aws/endpoints
  188. github.com/aws/aws-sdk-go/aws/request
  189. github.com/aws/aws-sdk-go/aws/session
  190. github.com/aws/aws-sdk-go/aws/signer/v4
  191. github.com/aws/aws-sdk-go/internal/ini
  192. github.com/aws/aws-sdk-go/internal/sdkio
  193. github.com/aws/aws-sdk-go/internal/sdkmath
  194. github.com/aws/aws-sdk-go/internal/sdkrand
  195. github.com/aws/aws-sdk-go/internal/sdkuri
  196. github.com/aws/aws-sdk-go/internal/shareddefaults
  197. github.com/aws/aws-sdk-go/private/protocol
  198. github.com/aws/aws-sdk-go/private/protocol/json/jsonutil
  199. github.com/aws/aws-sdk-go/private/protocol/jsonrpc
  200. github.com/aws/aws-sdk-go/private/protocol/query
  201. github.com/aws/aws-sdk-go/private/protocol/query/queryutil
  202. github.com/aws/aws-sdk-go/private/protocol/rest
  203. github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
  204. github.com/aws/aws-sdk-go/service/dynamodb
  205. github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute
  206. github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface
  207. github.com/aws/aws-sdk-go/service/sqs
  208. github.com/aws/aws-sdk-go/service/sqs/sqsiface
  209. github.com/aws/aws-sdk-go/service/sts
  210. github.com/aws/aws-sdk-go/service/sts/stsiface
  211. # github.com/aymerick/douceur v0.2.0
  212. github.com/aymerick/douceur/css
  213. # github.com/beorn7/perks v1.0.1
  214. github.com/beorn7/perks/quantile
  215. # github.com/bgentry/speakeasy v0.1.0
  216. ## explicit
  217. # github.com/blevesearch/bleve v1.0.7
  218. ## explicit
  219. github.com/blevesearch/bleve
  220. github.com/blevesearch/bleve/analysis
  221. github.com/blevesearch/bleve/analysis/analyzer/custom
  222. github.com/blevesearch/bleve/analysis/analyzer/keyword
  223. github.com/blevesearch/bleve/analysis/analyzer/standard
  224. github.com/blevesearch/bleve/analysis/datetime/flexible
  225. github.com/blevesearch/bleve/analysis/datetime/optional
  226. github.com/blevesearch/bleve/analysis/lang/en
  227. github.com/blevesearch/bleve/analysis/token/lowercase
  228. github.com/blevesearch/bleve/analysis/token/porter
  229. github.com/blevesearch/bleve/analysis/token/stop
  230. github.com/blevesearch/bleve/analysis/token/unicodenorm
  231. github.com/blevesearch/bleve/analysis/tokenizer/single
  232. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  233. github.com/blevesearch/bleve/document
  234. github.com/blevesearch/bleve/geo
  235. github.com/blevesearch/bleve/index
  236. github.com/blevesearch/bleve/index/scorch
  237. github.com/blevesearch/bleve/index/scorch/mergeplan
  238. github.com/blevesearch/bleve/index/scorch/segment
  239. github.com/blevesearch/bleve/index/store
  240. github.com/blevesearch/bleve/index/store/boltdb
  241. github.com/blevesearch/bleve/index/store/gtreap
  242. github.com/blevesearch/bleve/index/upsidedown
  243. github.com/blevesearch/bleve/mapping
  244. github.com/blevesearch/bleve/numeric
  245. github.com/blevesearch/bleve/registry
  246. github.com/blevesearch/bleve/search
  247. github.com/blevesearch/bleve/search/collector
  248. github.com/blevesearch/bleve/search/facet
  249. github.com/blevesearch/bleve/search/highlight
  250. github.com/blevesearch/bleve/search/highlight/format/html
  251. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  252. github.com/blevesearch/bleve/search/highlight/highlighter/html
  253. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  254. github.com/blevesearch/bleve/search/query
  255. github.com/blevesearch/bleve/search/scorer
  256. github.com/blevesearch/bleve/search/searcher
  257. github.com/blevesearch/bleve/size
  258. # github.com/blevesearch/go-porterstemmer v1.0.3
  259. github.com/blevesearch/go-porterstemmer
  260. # github.com/blevesearch/mmap-go v1.0.2
  261. github.com/blevesearch/mmap-go
  262. # github.com/blevesearch/segment v0.9.0
  263. github.com/blevesearch/segment
  264. # github.com/blevesearch/snowballstem v0.9.0
  265. github.com/blevesearch/snowballstem
  266. github.com/blevesearch/snowballstem/english
  267. # github.com/blevesearch/zap/v11 v11.0.7
  268. github.com/blevesearch/zap/v11
  269. # github.com/blevesearch/zap/v12 v12.0.7
  270. github.com/blevesearch/zap/v12
  271. # github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
  272. github.com/boombuler/barcode
  273. github.com/boombuler/barcode/qr
  274. github.com/boombuler/barcode/utils
  275. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  276. github.com/bradfitz/gomemcache/memcache
  277. # github.com/chris-ramon/douceur v0.2.0
  278. github.com/chris-ramon/douceur/parser
  279. # github.com/clbanning/mxj/v2 v2.5.5
  280. ## explicit
  281. github.com/clbanning/mxj/v2
  282. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  283. ## explicit
  284. github.com/couchbase/gomemcached
  285. github.com/couchbase/gomemcached/client
  286. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  287. github.com/couchbase/goutils/logging
  288. github.com/couchbase/goutils/scramsha
  289. # github.com/couchbase/vellum v1.0.1
  290. github.com/couchbase/vellum
  291. github.com/couchbase/vellum/levenshtein
  292. github.com/couchbase/vellum/regexp
  293. github.com/couchbase/vellum/utf8
  294. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  295. github.com/couchbaselabs/go-couchbase
  296. # github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d
  297. github.com/cpuguy83/go-md2man/v2/md2man
  298. # github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d
  299. ## explicit
  300. # github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
  301. ## explicit
  302. # github.com/cznic/strutil v0.0.0-20181122101858-275e90344537
  303. ## explicit
  304. # github.com/davecgh/go-spew v1.1.1
  305. github.com/davecgh/go-spew/spew
  306. # github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc
  307. ## explicit
  308. github.com/denisenkom/go-mssqldb
  309. github.com/denisenkom/go-mssqldb/internal/cp
  310. github.com/denisenkom/go-mssqldb/internal/decimal
  311. github.com/denisenkom/go-mssqldb/internal/querytext
  312. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  313. ## explicit
  314. github.com/dgrijalva/jwt-go
  315. # github.com/disintegration/imaging v1.6.2
  316. ## explicit
  317. github.com/disintegration/imaging
  318. # github.com/dlclark/regexp2 v1.4.0
  319. github.com/dlclark/regexp2
  320. github.com/dlclark/regexp2/syntax
  321. # github.com/dustin/go-humanize v1.0.0
  322. ## explicit
  323. github.com/dustin/go-humanize
  324. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  325. ## explicit
  326. github.com/editorconfig/editorconfig-core-go/v2
  327. # github.com/elliotchance/orderedmap v1.4.0
  328. ## explicit
  329. github.com/elliotchance/orderedmap
  330. # github.com/emirpasic/gods v1.12.0
  331. ## explicit
  332. github.com/emirpasic/gods/containers
  333. github.com/emirpasic/gods/lists
  334. github.com/emirpasic/gods/lists/arraylist
  335. github.com/emirpasic/gods/trees
  336. github.com/emirpasic/gods/trees/binaryheap
  337. github.com/emirpasic/gods/utils
  338. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  339. ## explicit
  340. github.com/ethantkoenig/rupture
  341. # github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
  342. ## explicit
  343. # github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
  344. ## explicit
  345. # github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870
  346. ## explicit
  347. # github.com/fatih/color v1.9.0
  348. github.com/fatih/color
  349. # github.com/fatih/structtag v1.2.0
  350. github.com/fatih/structtag
  351. # github.com/fsnotify/fsnotify v1.4.7
  352. github.com/fsnotify/fsnotify
  353. # github.com/gliderlabs/ssh v0.2.2
  354. ## explicit
  355. github.com/gliderlabs/ssh
  356. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  357. ## explicit
  358. github.com/glycerine/go-unsnap-stream
  359. # github.com/go-enry/go-enry/v2 v2.3.0
  360. ## explicit
  361. github.com/go-enry/go-enry/v2
  362. github.com/go-enry/go-enry/v2/data
  363. github.com/go-enry/go-enry/v2/data/rule
  364. github.com/go-enry/go-enry/v2/internal/tokenizer
  365. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  366. github.com/go-enry/go-enry/v2/regex
  367. # github.com/go-enry/go-oniguruma v1.2.0
  368. github.com/go-enry/go-oniguruma
  369. # github.com/go-git/gcfg v1.5.0
  370. github.com/go-git/gcfg
  371. github.com/go-git/gcfg/scanner
  372. github.com/go-git/gcfg/token
  373. github.com/go-git/gcfg/types
  374. # github.com/go-git/go-billy/v5 v5.0.0
  375. ## explicit
  376. github.com/go-git/go-billy/v5
  377. github.com/go-git/go-billy/v5/helper/chroot
  378. github.com/go-git/go-billy/v5/helper/polyfill
  379. github.com/go-git/go-billy/v5/osfs
  380. github.com/go-git/go-billy/v5/util
  381. # github.com/go-git/go-git/v5 v5.0.0
  382. ## explicit
  383. github.com/go-git/go-git/v5
  384. github.com/go-git/go-git/v5/config
  385. github.com/go-git/go-git/v5/internal/revision
  386. github.com/go-git/go-git/v5/internal/url
  387. github.com/go-git/go-git/v5/plumbing
  388. github.com/go-git/go-git/v5/plumbing/cache
  389. github.com/go-git/go-git/v5/plumbing/filemode
  390. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  391. github.com/go-git/go-git/v5/plumbing/format/config
  392. github.com/go-git/go-git/v5/plumbing/format/diff
  393. github.com/go-git/go-git/v5/plumbing/format/gitignore
  394. github.com/go-git/go-git/v5/plumbing/format/idxfile
  395. github.com/go-git/go-git/v5/plumbing/format/index
  396. github.com/go-git/go-git/v5/plumbing/format/objfile
  397. github.com/go-git/go-git/v5/plumbing/format/packfile
  398. github.com/go-git/go-git/v5/plumbing/format/pktline
  399. github.com/go-git/go-git/v5/plumbing/object
  400. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  401. github.com/go-git/go-git/v5/plumbing/protocol/packp
  402. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  403. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  404. github.com/go-git/go-git/v5/plumbing/revlist
  405. github.com/go-git/go-git/v5/plumbing/storer
  406. github.com/go-git/go-git/v5/plumbing/transport
  407. github.com/go-git/go-git/v5/plumbing/transport/client
  408. github.com/go-git/go-git/v5/plumbing/transport/file
  409. github.com/go-git/go-git/v5/plumbing/transport/git
  410. github.com/go-git/go-git/v5/plumbing/transport/http
  411. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  412. github.com/go-git/go-git/v5/plumbing/transport/server
  413. github.com/go-git/go-git/v5/plumbing/transport/ssh
  414. github.com/go-git/go-git/v5/storage
  415. github.com/go-git/go-git/v5/storage/filesystem
  416. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  417. github.com/go-git/go-git/v5/storage/memory
  418. github.com/go-git/go-git/v5/utils/binary
  419. github.com/go-git/go-git/v5/utils/diff
  420. github.com/go-git/go-git/v5/utils/ioutil
  421. github.com/go-git/go-git/v5/utils/merkletrie
  422. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  423. github.com/go-git/go-git/v5/utils/merkletrie/index
  424. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  425. github.com/go-git/go-git/v5/utils/merkletrie/noder
  426. # github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
  427. ## explicit
  428. github.com/go-http-utils/headers
  429. # github.com/go-ini/ini v1.56.0
  430. ## explicit
  431. github.com/go-ini/ini
  432. # github.com/go-macaron/auth v0.0.0-20161228062157-884c0e6c9b92
  433. ## explicit
  434. github.com/go-macaron/auth
  435. # github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191
  436. github.com/go-macaron/inject
  437. # github.com/go-openapi/analysis v0.19.5
  438. github.com/go-openapi/analysis
  439. github.com/go-openapi/analysis/internal
  440. # github.com/go-openapi/errors v0.19.2
  441. github.com/go-openapi/errors
  442. # github.com/go-openapi/inflect v0.19.0
  443. github.com/go-openapi/inflect
  444. # github.com/go-openapi/jsonpointer v0.19.3
  445. github.com/go-openapi/jsonpointer
  446. # github.com/go-openapi/jsonreference v0.19.3
  447. ## explicit
  448. github.com/go-openapi/jsonreference
  449. # github.com/go-openapi/loads v0.19.3
  450. github.com/go-openapi/loads
  451. github.com/go-openapi/loads/fmts
  452. # github.com/go-openapi/runtime v0.19.5
  453. github.com/go-openapi/runtime
  454. github.com/go-openapi/runtime/logger
  455. github.com/go-openapi/runtime/middleware
  456. github.com/go-openapi/runtime/middleware/denco
  457. github.com/go-openapi/runtime/middleware/header
  458. github.com/go-openapi/runtime/middleware/untyped
  459. github.com/go-openapi/runtime/security
  460. # github.com/go-openapi/spec v0.19.3
  461. github.com/go-openapi/spec
  462. # github.com/go-openapi/strfmt v0.19.3
  463. github.com/go-openapi/strfmt
  464. # github.com/go-openapi/swag v0.19.5
  465. github.com/go-openapi/swag
  466. # github.com/go-openapi/validate v0.19.3
  467. github.com/go-openapi/validate
  468. # github.com/go-redis/redis v6.15.2+incompatible
  469. ## explicit
  470. github.com/go-redis/redis
  471. github.com/go-redis/redis/internal
  472. github.com/go-redis/redis/internal/consistenthash
  473. github.com/go-redis/redis/internal/hashtag
  474. github.com/go-redis/redis/internal/pool
  475. github.com/go-redis/redis/internal/proto
  476. github.com/go-redis/redis/internal/util
  477. # github.com/go-resty/resty/v2 v2.3.0
  478. ## explicit
  479. github.com/go-resty/resty/v2
  480. # github.com/go-sql-driver/mysql v1.4.1
  481. ## explicit
  482. github.com/go-sql-driver/mysql
  483. # github.com/go-stack/stack v1.8.0
  484. github.com/go-stack/stack
  485. # github.com/go-swagger/go-swagger v0.21.0
  486. ## explicit
  487. github.com/go-swagger/go-swagger/cmd/swagger
  488. github.com/go-swagger/go-swagger/cmd/swagger/commands
  489. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  490. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  491. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  492. github.com/go-swagger/go-swagger/codescan
  493. github.com/go-swagger/go-swagger/generator
  494. github.com/go-swagger/go-swagger/scan
  495. # github.com/gobwas/glob v0.2.3
  496. ## explicit
  497. github.com/gobwas/glob
  498. github.com/gobwas/glob/compiler
  499. github.com/gobwas/glob/match
  500. github.com/gobwas/glob/syntax
  501. github.com/gobwas/glob/syntax/ast
  502. github.com/gobwas/glob/syntax/lexer
  503. github.com/gobwas/glob/util/runes
  504. github.com/gobwas/glob/util/strings
  505. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  506. ## explicit
  507. github.com/gogs/chardet
  508. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  509. ## explicit
  510. github.com/gogs/cron
  511. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  512. github.com/golang-sql/civil
  513. # github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6
  514. github.com/golang/groupcache/lru
  515. # github.com/golang/mock v1.6.0
  516. ## explicit
  517. # github.com/golang/protobuf v1.4.1
  518. ## explicit
  519. github.com/golang/protobuf/proto
  520. github.com/golang/protobuf/protoc-gen-go/descriptor
  521. github.com/golang/protobuf/ptypes
  522. github.com/golang/protobuf/ptypes/any
  523. github.com/golang/protobuf/ptypes/duration
  524. github.com/golang/protobuf/ptypes/empty
  525. github.com/golang/protobuf/ptypes/timestamp
  526. # github.com/golang/snappy v0.0.1
  527. github.com/golang/snappy
  528. # github.com/gomodule/redigo v2.0.0+incompatible
  529. ## explicit
  530. github.com/gomodule/redigo/internal
  531. github.com/gomodule/redigo/redis
  532. # github.com/google/go-github/v24 v24.0.1
  533. ## explicit
  534. github.com/google/go-github/v24/github
  535. # github.com/google/go-querystring v1.0.0
  536. github.com/google/go-querystring/query
  537. # github.com/google/uuid v1.1.1
  538. ## explicit
  539. github.com/google/uuid
  540. # github.com/googleapis/gax-go/v2 v2.0.5
  541. github.com/googleapis/gax-go/v2
  542. # github.com/gorilla/context v1.1.1
  543. ## explicit
  544. github.com/gorilla/context
  545. # github.com/gorilla/css v1.0.0
  546. github.com/gorilla/css/scanner
  547. # github.com/gorilla/handlers v1.4.2
  548. github.com/gorilla/handlers
  549. # github.com/gorilla/mux v1.6.2
  550. github.com/gorilla/mux
  551. # github.com/gorilla/securecookie v1.1.1
  552. github.com/gorilla/securecookie
  553. # github.com/gorilla/sessions v1.2.0
  554. github.com/gorilla/sessions
  555. # github.com/gorilla/websocket v1.4.0
  556. ## explicit
  557. github.com/gorilla/websocket
  558. # github.com/hashicorp/go-cleanhttp v0.5.1
  559. github.com/hashicorp/go-cleanhttp
  560. # github.com/hashicorp/go-retryablehttp v0.6.6
  561. ## explicit
  562. github.com/hashicorp/go-retryablehttp
  563. # github.com/hashicorp/hcl v1.0.0
  564. github.com/hashicorp/hcl
  565. github.com/hashicorp/hcl/hcl/ast
  566. github.com/hashicorp/hcl/hcl/parser
  567. github.com/hashicorp/hcl/hcl/printer
  568. github.com/hashicorp/hcl/hcl/scanner
  569. github.com/hashicorp/hcl/hcl/strconv
  570. github.com/hashicorp/hcl/hcl/token
  571. github.com/hashicorp/hcl/json/parser
  572. github.com/hashicorp/hcl/json/scanner
  573. github.com/hashicorp/hcl/json/token
  574. # github.com/huandu/xstrings v1.3.0
  575. ## explicit
  576. github.com/huandu/xstrings
  577. # github.com/issue9/assert v1.3.2
  578. ## explicit
  579. # github.com/issue9/identicon v1.0.1
  580. ## explicit
  581. github.com/issue9/identicon
  582. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  583. ## explicit
  584. github.com/jaytaylor/html2text
  585. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  586. github.com/jbenet/go-context/io
  587. # github.com/jessevdk/go-flags v1.4.0
  588. github.com/jessevdk/go-flags
  589. # github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
  590. github.com/jmespath/go-jmespath
  591. # github.com/jmhodges/levigo v1.0.0
  592. ## explicit
  593. # github.com/joho/godotenv v1.3.0
  594. ## explicit
  595. # github.com/json-iterator/go v1.1.10
  596. github.com/json-iterator/go
  597. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  598. ## explicit
  599. github.com/kballard/go-shellquote
  600. # github.com/kelseyhightower/envconfig v1.3.0
  601. github.com/kelseyhightower/envconfig
  602. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  603. github.com/kevinburke/ssh_config
  604. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  605. ## explicit
  606. github.com/keybase/go-crypto/brainpool
  607. github.com/keybase/go-crypto/cast5
  608. github.com/keybase/go-crypto/curve25519
  609. github.com/keybase/go-crypto/ed25519
  610. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  611. github.com/keybase/go-crypto/openpgp
  612. github.com/keybase/go-crypto/openpgp/armor
  613. github.com/keybase/go-crypto/openpgp/ecdh
  614. github.com/keybase/go-crypto/openpgp/elgamal
  615. github.com/keybase/go-crypto/openpgp/errors
  616. github.com/keybase/go-crypto/openpgp/packet
  617. github.com/keybase/go-crypto/openpgp/s2k
  618. github.com/keybase/go-crypto/rsa
  619. # github.com/klauspost/compress v1.10.2
  620. ## explicit
  621. github.com/klauspost/compress/flate
  622. github.com/klauspost/compress/gzip
  623. # github.com/klauspost/cpuid v1.2.3
  624. github.com/klauspost/cpuid
  625. # github.com/kr/pretty v0.1.0
  626. github.com/kr/pretty
  627. # github.com/kr/text v0.2.0
  628. github.com/kr/text
  629. # github.com/lafriks/xormstore v1.3.2
  630. ## explicit
  631. github.com/lafriks/xormstore
  632. github.com/lafriks/xormstore/util
  633. # github.com/lib/pq v1.2.0
  634. ## explicit
  635. github.com/lib/pq
  636. github.com/lib/pq/oid
  637. github.com/lib/pq/scram
  638. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  639. ## explicit
  640. github.com/lunny/dingtalk_webhook
  641. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  642. github.com/lunny/log
  643. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  644. github.com/lunny/nodb
  645. github.com/lunny/nodb/config
  646. github.com/lunny/nodb/store
  647. github.com/lunny/nodb/store/driver
  648. github.com/lunny/nodb/store/goleveldb
  649. # github.com/magiconair/properties v1.8.1
  650. github.com/magiconair/properties
  651. # github.com/mailru/easyjson v0.7.0
  652. ## explicit
  653. github.com/mailru/easyjson
  654. github.com/mailru/easyjson/buffer
  655. github.com/mailru/easyjson/jlexer
  656. github.com/mailru/easyjson/jwriter
  657. # github.com/markbates/goth v1.61.2
  658. ## explicit
  659. github.com/markbates/goth
  660. github.com/markbates/goth/gothic
  661. github.com/markbates/goth/providers/bitbucket
  662. github.com/markbates/goth/providers/discord
  663. github.com/markbates/goth/providers/dropbox
  664. github.com/markbates/goth/providers/facebook
  665. github.com/markbates/goth/providers/gitea
  666. github.com/markbates/goth/providers/github
  667. github.com/markbates/goth/providers/gitlab
  668. github.com/markbates/goth/providers/google
  669. github.com/markbates/goth/providers/nextcloud
  670. github.com/markbates/goth/providers/openidConnect
  671. github.com/markbates/goth/providers/twitter
  672. github.com/markbates/goth/providers/yandex
  673. # github.com/mattn/go-colorable v0.1.4
  674. github.com/mattn/go-colorable
  675. # github.com/mattn/go-isatty v0.0.11
  676. ## explicit
  677. github.com/mattn/go-isatty
  678. # github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d
  679. ## explicit
  680. # github.com/mattn/go-runewidth v0.0.7
  681. github.com/mattn/go-runewidth
  682. # github.com/mattn/go-sqlite3 v1.11.0
  683. ## explicit
  684. github.com/mattn/go-sqlite3
  685. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  686. github.com/matttproud/golang_protobuf_extensions/pbutil
  687. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  688. ## explicit
  689. github.com/mcuadros/go-version
  690. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  691. ## explicit
  692. github.com/mgechev/dots
  693. # github.com/mgechev/revive v1.0.2
  694. ## explicit
  695. github.com/mgechev/revive/formatter
  696. github.com/mgechev/revive/lint
  697. github.com/mgechev/revive/rule
  698. # github.com/microcosm-cc/bluemonday v1.0.3-0.20191119130333-0a75d7616912
  699. ## explicit
  700. github.com/microcosm-cc/bluemonday
  701. # github.com/minio/md5-simd v1.1.0
  702. github.com/minio/md5-simd
  703. # github.com/minio/minio-go v6.0.14+incompatible
  704. ## explicit
  705. github.com/minio/minio-go
  706. github.com/minio/minio-go/pkg/credentials
  707. github.com/minio/minio-go/pkg/encrypt
  708. github.com/minio/minio-go/pkg/s3signer
  709. github.com/minio/minio-go/pkg/s3utils
  710. github.com/minio/minio-go/pkg/set
  711. # github.com/minio/minio-go/v6 v6.0.57
  712. ## explicit
  713. github.com/minio/minio-go/v6
  714. github.com/minio/minio-go/v6/pkg/credentials
  715. github.com/minio/minio-go/v6/pkg/encrypt
  716. github.com/minio/minio-go/v6/pkg/s3utils
  717. github.com/minio/minio-go/v6/pkg/set
  718. github.com/minio/minio-go/v6/pkg/signer
  719. github.com/minio/minio-go/v6/pkg/tags
  720. # github.com/minio/sha256-simd v0.1.1
  721. github.com/minio/sha256-simd
  722. # github.com/mitchellh/go-homedir v1.1.0
  723. ## explicit
  724. github.com/mitchellh/go-homedir
  725. # github.com/mitchellh/mapstructure v1.1.2
  726. github.com/mitchellh/mapstructure
  727. # github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
  728. github.com/modern-go/concurrent
  729. # github.com/modern-go/reflect2 v1.0.1
  730. github.com/modern-go/reflect2
  731. # github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
  732. github.com/mohae/deepcopy
  733. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  734. github.com/mrjones/oauth
  735. # github.com/mschoch/smat v0.2.0
  736. github.com/mschoch/smat
  737. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  738. ## explicit
  739. github.com/msteinert/pam
  740. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  741. ## explicit
  742. github.com/nfnt/resize
  743. # github.com/niklasfasching/go-org v0.1.9
  744. ## explicit
  745. github.com/niklasfasching/go-org/org
  746. # github.com/olekukonko/tablewriter v0.0.4
  747. github.com/olekukonko/tablewriter
  748. # github.com/oliamb/cutter v0.2.2
  749. ## explicit
  750. github.com/oliamb/cutter
  751. # github.com/olivere/elastic/v7 v7.0.9
  752. ## explicit
  753. github.com/olivere/elastic/v7
  754. github.com/olivere/elastic/v7/config
  755. github.com/olivere/elastic/v7/uritemplates
  756. # github.com/opentracing/opentracing-go v1.1.0
  757. github.com/opentracing/opentracing-go
  758. github.com/opentracing/opentracing-go/ext
  759. github.com/opentracing/opentracing-go/log
  760. # github.com/patrickmn/go-cache v2.1.0+incompatible
  761. ## explicit
  762. github.com/patrickmn/go-cache
  763. # github.com/pelletier/go-toml v1.4.0
  764. github.com/pelletier/go-toml
  765. # github.com/philhofer/fwd v1.0.0
  766. github.com/philhofer/fwd
  767. # github.com/pkg/errors v0.9.1
  768. ## explicit
  769. github.com/pkg/errors
  770. # github.com/pmezard/go-difflib v1.0.0
  771. github.com/pmezard/go-difflib/difflib
  772. # github.com/pquerna/otp v1.2.0
  773. ## explicit
  774. github.com/pquerna/otp
  775. github.com/pquerna/otp/hotp
  776. github.com/pquerna/otp/totp
  777. # github.com/prometheus/client_golang v1.1.0
  778. ## explicit
  779. github.com/prometheus/client_golang/prometheus
  780. github.com/prometheus/client_golang/prometheus/internal
  781. github.com/prometheus/client_golang/prometheus/promhttp
  782. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  783. ## explicit
  784. github.com/prometheus/client_model/go
  785. # github.com/prometheus/common v0.6.0
  786. github.com/prometheus/common/expfmt
  787. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  788. github.com/prometheus/common/model
  789. # github.com/prometheus/procfs v0.0.4
  790. ## explicit
  791. github.com/prometheus/procfs
  792. github.com/prometheus/procfs/internal/fs
  793. github.com/prometheus/procfs/internal/util
  794. # github.com/quasoft/websspi v1.0.0
  795. ## explicit
  796. github.com/quasoft/websspi
  797. github.com/quasoft/websspi/secctx
  798. # github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001
  799. ## explicit
  800. # github.com/russross/blackfriday/v2 v2.0.1
  801. github.com/russross/blackfriday/v2
  802. # github.com/satori/go.uuid v1.2.0
  803. ## explicit
  804. github.com/satori/go.uuid
  805. # github.com/sergi/go-diff v1.1.0
  806. ## explicit
  807. github.com/sergi/go-diff/diffmatchpatch
  808. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  809. ## explicit
  810. github.com/shurcooL/httpfs/vfsutil
  811. # github.com/shurcooL/sanitized_anchor_name v1.0.0
  812. github.com/shurcooL/sanitized_anchor_name
  813. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  814. ## explicit
  815. github.com/shurcooL/vfsgen
  816. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  817. github.com/siddontang/go-snappy/snappy
  818. # github.com/spf13/afero v1.2.2
  819. github.com/spf13/afero
  820. github.com/spf13/afero/mem
  821. # github.com/spf13/cast v1.3.0
  822. github.com/spf13/cast
  823. # github.com/spf13/jwalterweatherman v1.1.0
  824. github.com/spf13/jwalterweatherman
  825. # github.com/spf13/pflag v1.0.3
  826. github.com/spf13/pflag
  827. # github.com/spf13/viper v1.4.0
  828. github.com/spf13/viper
  829. # github.com/steveyen/gtreap v0.1.0
  830. github.com/steveyen/gtreap
  831. # github.com/streadway/amqp v0.0.0-20190214183023-884228600bc9
  832. github.com/streadway/amqp
  833. # github.com/stretchr/testify v1.7.0
  834. ## explicit
  835. github.com/stretchr/testify/assert
  836. github.com/stretchr/testify/require
  837. # github.com/syndtr/goleveldb v1.0.0
  838. github.com/syndtr/goleveldb/leveldb
  839. github.com/syndtr/goleveldb/leveldb/cache
  840. github.com/syndtr/goleveldb/leveldb/comparer
  841. github.com/syndtr/goleveldb/leveldb/errors
  842. github.com/syndtr/goleveldb/leveldb/filter
  843. github.com/syndtr/goleveldb/leveldb/iterator
  844. github.com/syndtr/goleveldb/leveldb/journal
  845. github.com/syndtr/goleveldb/leveldb/memdb
  846. github.com/syndtr/goleveldb/leveldb/opt
  847. github.com/syndtr/goleveldb/leveldb/storage
  848. github.com/syndtr/goleveldb/leveldb/table
  849. github.com/syndtr/goleveldb/leveldb/util
  850. # github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481
  851. ## explicit
  852. # github.com/tinylib/msgp v1.1.2
  853. ## explicit
  854. github.com/tinylib/msgp/msgp
  855. # github.com/tjfoc/gmsm v1.3.2
  856. github.com/tjfoc/gmsm/sm3
  857. # github.com/toqueteos/trie v1.0.0
  858. github.com/toqueteos/trie
  859. # github.com/toqueteos/webbrowser v1.2.0
  860. github.com/toqueteos/webbrowser
  861. # github.com/tstranex/u2f v1.0.0
  862. ## explicit
  863. github.com/tstranex/u2f
  864. # github.com/unknwon/cae v1.0.0
  865. ## explicit
  866. github.com/unknwon/cae
  867. github.com/unknwon/cae/zip
  868. # github.com/unknwon/com v1.0.1
  869. ## explicit
  870. github.com/unknwon/com
  871. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  872. ## explicit
  873. github.com/unknwon/i18n
  874. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  875. ## explicit
  876. github.com/unknwon/paginater
  877. # github.com/urfave/cli v1.22.1
  878. ## explicit
  879. github.com/urfave/cli
  880. # github.com/willf/bitset v1.1.10
  881. github.com/willf/bitset
  882. # github.com/xanzy/go-gitlab v0.31.0
  883. ## explicit
  884. github.com/xanzy/go-gitlab
  885. # github.com/xanzy/ssh-agent v0.2.1
  886. github.com/xanzy/ssh-agent
  887. # github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c
  888. github.com/xdg/scram
  889. # github.com/xdg/stringprep v1.0.0
  890. github.com/xdg/stringprep
  891. # github.com/yohcop/openid-go v1.0.0
  892. ## explicit
  893. github.com/yohcop/openid-go
  894. # github.com/yuin/goldmark v1.4.13
  895. ## explicit
  896. github.com/yuin/goldmark
  897. github.com/yuin/goldmark/ast
  898. github.com/yuin/goldmark/extension
  899. github.com/yuin/goldmark/extension/ast
  900. github.com/yuin/goldmark/parser
  901. github.com/yuin/goldmark/renderer
  902. github.com/yuin/goldmark/renderer/html
  903. github.com/yuin/goldmark/text
  904. github.com/yuin/goldmark/util
  905. # github.com/yuin/goldmark-highlighting v0.0.0-20220208100518-594be1970594
  906. ## explicit
  907. github.com/yuin/goldmark-highlighting
  908. # github.com/yuin/goldmark-meta v1.1.0
  909. ## explicit
  910. github.com/yuin/goldmark-meta
  911. # go.etcd.io/bbolt v1.3.4
  912. go.etcd.io/bbolt
  913. # go.mongodb.org/mongo-driver v1.1.1
  914. go.mongodb.org/mongo-driver/bson
  915. go.mongodb.org/mongo-driver/bson/bsoncodec
  916. go.mongodb.org/mongo-driver/bson/bsonrw
  917. go.mongodb.org/mongo-driver/bson/bsontype
  918. go.mongodb.org/mongo-driver/bson/primitive
  919. go.mongodb.org/mongo-driver/event
  920. go.mongodb.org/mongo-driver/internal
  921. go.mongodb.org/mongo-driver/mongo
  922. go.mongodb.org/mongo-driver/mongo/options
  923. go.mongodb.org/mongo-driver/mongo/readconcern
  924. go.mongodb.org/mongo-driver/mongo/readpref
  925. go.mongodb.org/mongo-driver/mongo/writeconcern
  926. go.mongodb.org/mongo-driver/tag
  927. go.mongodb.org/mongo-driver/version
  928. go.mongodb.org/mongo-driver/x/bsonx
  929. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  930. go.mongodb.org/mongo-driver/x/mongo/driver
  931. go.mongodb.org/mongo-driver/x/mongo/driver/address
  932. go.mongodb.org/mongo-driver/x/mongo/driver/auth
  933. go.mongodb.org/mongo-driver/x/mongo/driver/auth/internal/gssapi
  934. go.mongodb.org/mongo-driver/x/mongo/driver/connstring
  935. go.mongodb.org/mongo-driver/x/mongo/driver/description
  936. go.mongodb.org/mongo-driver/x/mongo/driver/dns
  937. go.mongodb.org/mongo-driver/x/mongo/driver/operation
  938. go.mongodb.org/mongo-driver/x/mongo/driver/session
  939. go.mongodb.org/mongo-driver/x/mongo/driver/topology
  940. go.mongodb.org/mongo-driver/x/mongo/driver/uuid
  941. go.mongodb.org/mongo-driver/x/mongo/driver/wiremessage
  942. # go.opencensus.io v0.22.1
  943. go.opencensus.io
  944. go.opencensus.io/internal
  945. go.opencensus.io/internal/tagencoding
  946. go.opencensus.io/metric/metricdata
  947. go.opencensus.io/metric/metricproducer
  948. go.opencensus.io/plugin/ocgrpc
  949. go.opencensus.io/plugin/ochttp
  950. go.opencensus.io/plugin/ochttp/propagation/b3
  951. go.opencensus.io/resource
  952. go.opencensus.io/stats
  953. go.opencensus.io/stats/internal
  954. go.opencensus.io/stats/view
  955. go.opencensus.io/tag
  956. go.opencensus.io/trace
  957. go.opencensus.io/trace/internal
  958. go.opencensus.io/trace/propagation
  959. go.opencensus.io/trace/tracestate
  960. # golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
  961. ## explicit
  962. golang.org/x/crypto/acme
  963. golang.org/x/crypto/acme/autocert
  964. golang.org/x/crypto/argon2
  965. golang.org/x/crypto/bcrypt
  966. golang.org/x/crypto/blake2b
  967. golang.org/x/crypto/blowfish
  968. golang.org/x/crypto/cast5
  969. golang.org/x/crypto/chacha20
  970. golang.org/x/crypto/curve25519
  971. golang.org/x/crypto/ed25519
  972. golang.org/x/crypto/ed25519/internal/edwards25519
  973. golang.org/x/crypto/internal/subtle
  974. golang.org/x/crypto/md4
  975. golang.org/x/crypto/openpgp
  976. golang.org/x/crypto/openpgp/armor
  977. golang.org/x/crypto/openpgp/elgamal
  978. golang.org/x/crypto/openpgp/errors
  979. golang.org/x/crypto/openpgp/packet
  980. golang.org/x/crypto/openpgp/s2k
  981. golang.org/x/crypto/pbkdf2
  982. golang.org/x/crypto/poly1305
  983. golang.org/x/crypto/scrypt
  984. golang.org/x/crypto/ssh
  985. golang.org/x/crypto/ssh/agent
  986. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  987. golang.org/x/crypto/ssh/knownhosts
  988. # golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8
  989. golang.org/x/image/bmp
  990. golang.org/x/image/ccitt
  991. golang.org/x/image/tiff
  992. golang.org/x/image/tiff/lzw
  993. # golang.org/x/mod v0.4.2
  994. golang.org/x/mod/module
  995. golang.org/x/mod/semver
  996. # golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
  997. ## explicit
  998. golang.org/x/net/context
  999. golang.org/x/net/context/ctxhttp
  1000. golang.org/x/net/html
  1001. golang.org/x/net/html/atom
  1002. golang.org/x/net/html/charset
  1003. golang.org/x/net/http/httpguts
  1004. golang.org/x/net/http2
  1005. golang.org/x/net/http2/hpack
  1006. golang.org/x/net/idna
  1007. golang.org/x/net/internal/socks
  1008. golang.org/x/net/internal/timeseries
  1009. golang.org/x/net/proxy
  1010. golang.org/x/net/publicsuffix
  1011. golang.org/x/net/trace
  1012. # golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  1013. ## explicit
  1014. golang.org/x/oauth2
  1015. golang.org/x/oauth2/google
  1016. golang.org/x/oauth2/internal
  1017. golang.org/x/oauth2/jws
  1018. golang.org/x/oauth2/jwt
  1019. # golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
  1020. golang.org/x/sync/errgroup
  1021. golang.org/x/sync/semaphore
  1022. # golang.org/x/sys v0.0.0-20210510120138-977fb7262007
  1023. ## explicit
  1024. golang.org/x/sys/cpu
  1025. golang.org/x/sys/execabs
  1026. golang.org/x/sys/internal/unsafeheader
  1027. golang.org/x/sys/unix
  1028. golang.org/x/sys/windows
  1029. golang.org/x/sys/windows/svc
  1030. golang.org/x/sys/windows/svc/debug
  1031. # golang.org/x/text v0.3.3
  1032. ## explicit
  1033. golang.org/x/text/encoding
  1034. golang.org/x/text/encoding/charmap
  1035. golang.org/x/text/encoding/htmlindex
  1036. golang.org/x/text/encoding/internal
  1037. golang.org/x/text/encoding/internal/identifier
  1038. golang.org/x/text/encoding/japanese
  1039. golang.org/x/text/encoding/korean
  1040. golang.org/x/text/encoding/simplifiedchinese
  1041. golang.org/x/text/encoding/traditionalchinese
  1042. golang.org/x/text/encoding/unicode
  1043. golang.org/x/text/internal/language
  1044. golang.org/x/text/internal/language/compact
  1045. golang.org/x/text/internal/tag
  1046. golang.org/x/text/internal/utf8internal
  1047. golang.org/x/text/language
  1048. golang.org/x/text/runes
  1049. golang.org/x/text/secure/bidirule
  1050. golang.org/x/text/transform
  1051. golang.org/x/text/unicode/bidi
  1052. golang.org/x/text/unicode/norm
  1053. golang.org/x/text/width
  1054. # golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
  1055. ## explicit
  1056. golang.org/x/time/rate
  1057. # golang.org/x/tools v0.1.1
  1058. ## explicit
  1059. golang.org/x/tools/cover
  1060. golang.org/x/tools/go/analysis
  1061. golang.org/x/tools/go/analysis/internal/analysisflags
  1062. golang.org/x/tools/go/analysis/internal/facts
  1063. golang.org/x/tools/go/analysis/unitchecker
  1064. golang.org/x/tools/go/ast/astutil
  1065. golang.org/x/tools/go/buildutil
  1066. golang.org/x/tools/go/gcexportdata
  1067. golang.org/x/tools/go/internal/cgo
  1068. golang.org/x/tools/go/internal/gcimporter
  1069. golang.org/x/tools/go/internal/packagesdriver
  1070. golang.org/x/tools/go/loader
  1071. golang.org/x/tools/go/packages
  1072. golang.org/x/tools/go/types/objectpath
  1073. golang.org/x/tools/imports
  1074. golang.org/x/tools/internal/analysisinternal
  1075. golang.org/x/tools/internal/event
  1076. golang.org/x/tools/internal/event/core
  1077. golang.org/x/tools/internal/event/keys
  1078. golang.org/x/tools/internal/event/label
  1079. golang.org/x/tools/internal/fastwalk
  1080. golang.org/x/tools/internal/gocommand
  1081. golang.org/x/tools/internal/gopathwalk
  1082. golang.org/x/tools/internal/imports
  1083. golang.org/x/tools/internal/lsp/fuzzy
  1084. golang.org/x/tools/internal/packagesinternal
  1085. golang.org/x/tools/internal/typesinternal
  1086. # golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
  1087. golang.org/x/xerrors
  1088. golang.org/x/xerrors/internal
  1089. # google.golang.org/api v0.9.0
  1090. google.golang.org/api/googleapi/transport
  1091. google.golang.org/api/internal
  1092. google.golang.org/api/iterator
  1093. google.golang.org/api/option
  1094. google.golang.org/api/support/bundler
  1095. google.golang.org/api/transport
  1096. google.golang.org/api/transport/grpc
  1097. google.golang.org/api/transport/http
  1098. google.golang.org/api/transport/http/internal/propagation
  1099. # google.golang.org/appengine v1.6.5
  1100. ## explicit
  1101. google.golang.org/appengine
  1102. google.golang.org/appengine/cloudsql
  1103. google.golang.org/appengine/internal
  1104. google.golang.org/appengine/internal/app_identity
  1105. google.golang.org/appengine/internal/base
  1106. google.golang.org/appengine/internal/datastore
  1107. google.golang.org/appengine/internal/log
  1108. google.golang.org/appengine/internal/modules
  1109. google.golang.org/appengine/internal/remote_api
  1110. google.golang.org/appengine/internal/socket
  1111. google.golang.org/appengine/internal/urlfetch
  1112. google.golang.org/appengine/socket
  1113. google.golang.org/appengine/urlfetch
  1114. # google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55
  1115. google.golang.org/genproto/googleapis/api/annotations
  1116. google.golang.org/genproto/googleapis/iam/v1
  1117. google.golang.org/genproto/googleapis/pubsub/v1
  1118. google.golang.org/genproto/googleapis/rpc/status
  1119. google.golang.org/genproto/googleapis/type/expr
  1120. google.golang.org/genproto/protobuf/field_mask
  1121. # google.golang.org/grpc v1.21.1
  1122. google.golang.org/grpc
  1123. google.golang.org/grpc/balancer
  1124. google.golang.org/grpc/balancer/base
  1125. google.golang.org/grpc/balancer/grpclb
  1126. google.golang.org/grpc/balancer/grpclb/grpc_lb_v1
  1127. google.golang.org/grpc/balancer/roundrobin
  1128. google.golang.org/grpc/binarylog/grpc_binarylog_v1
  1129. google.golang.org/grpc/codes
  1130. google.golang.org/grpc/connectivity
  1131. google.golang.org/grpc/credentials
  1132. google.golang.org/grpc/credentials/alts
  1133. google.golang.org/grpc/credentials/alts/internal
  1134. google.golang.org/grpc/credentials/alts/internal/authinfo
  1135. google.golang.org/grpc/credentials/alts/internal/conn
  1136. google.golang.org/grpc/credentials/alts/internal/handshaker
  1137. google.golang.org/grpc/credentials/alts/internal/handshaker/service
  1138. google.golang.org/grpc/credentials/alts/internal/proto/grpc_gcp
  1139. google.golang.org/grpc/credentials/google
  1140. google.golang.org/grpc/credentials/internal
  1141. google.golang.org/grpc/credentials/oauth
  1142. google.golang.org/grpc/encoding
  1143. google.golang.org/grpc/encoding/proto
  1144. google.golang.org/grpc/grpclog
  1145. google.golang.org/grpc/internal
  1146. google.golang.org/grpc/internal/backoff
  1147. google.golang.org/grpc/internal/balancerload
  1148. google.golang.org/grpc/internal/binarylog
  1149. google.golang.org/grpc/internal/channelz
  1150. google.golang.org/grpc/internal/envconfig
  1151. google.golang.org/grpc/internal/grpcrand
  1152. google.golang.org/grpc/internal/grpcsync
  1153. google.golang.org/grpc/internal/syscall
  1154. google.golang.org/grpc/internal/transport
  1155. google.golang.org/grpc/keepalive
  1156. google.golang.org/grpc/metadata
  1157. google.golang.org/grpc/naming
  1158. google.golang.org/grpc/peer
  1159. google.golang.org/grpc/resolver
  1160. google.golang.org/grpc/resolver/dns
  1161. google.golang.org/grpc/resolver/passthrough
  1162. google.golang.org/grpc/stats
  1163. google.golang.org/grpc/status
  1164. google.golang.org/grpc/tap
  1165. # google.golang.org/protobuf v1.22.0
  1166. google.golang.org/protobuf/encoding/prototext
  1167. google.golang.org/protobuf/encoding/protowire
  1168. google.golang.org/protobuf/internal/descfmt
  1169. google.golang.org/protobuf/internal/descopts
  1170. google.golang.org/protobuf/internal/detrand
  1171. google.golang.org/protobuf/internal/encoding/defval
  1172. google.golang.org/protobuf/internal/encoding/messageset
  1173. google.golang.org/protobuf/internal/encoding/tag
  1174. google.golang.org/protobuf/internal/encoding/text
  1175. google.golang.org/protobuf/internal/errors
  1176. google.golang.org/protobuf/internal/fieldnum
  1177. google.golang.org/protobuf/internal/fieldsort
  1178. google.golang.org/protobuf/internal/filedesc
  1179. google.golang.org/protobuf/internal/filetype
  1180. google.golang.org/protobuf/internal/flags
  1181. google.golang.org/protobuf/internal/genname
  1182. google.golang.org/protobuf/internal/impl
  1183. google.golang.org/protobuf/internal/mapsort
  1184. google.golang.org/protobuf/internal/pragma
  1185. google.golang.org/protobuf/internal/set
  1186. google.golang.org/protobuf/internal/strs
  1187. google.golang.org/protobuf/internal/version
  1188. google.golang.org/protobuf/proto
  1189. google.golang.org/protobuf/reflect/protoreflect
  1190. google.golang.org/protobuf/reflect/protoregistry
  1191. google.golang.org/protobuf/runtime/protoiface
  1192. google.golang.org/protobuf/runtime/protoimpl
  1193. google.golang.org/protobuf/types/descriptorpb
  1194. google.golang.org/protobuf/types/known/anypb
  1195. google.golang.org/protobuf/types/known/durationpb
  1196. google.golang.org/protobuf/types/known/emptypb
  1197. google.golang.org/protobuf/types/known/timestamppb
  1198. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  1199. ## explicit
  1200. gopkg.in/alexcesaro/quotedprintable.v3
  1201. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  1202. ## explicit
  1203. gopkg.in/asn1-ber.v1
  1204. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  1205. ## explicit
  1206. gopkg.in/gomail.v2
  1207. # gopkg.in/ini.v1 v1.56.0
  1208. ## explicit
  1209. gopkg.in/ini.v1
  1210. # gopkg.in/ldap.v3 v3.0.2
  1211. ## explicit
  1212. gopkg.in/ldap.v3
  1213. # gopkg.in/macaron.v1 v1.3.9
  1214. ## explicit
  1215. gopkg.in/macaron.v1
  1216. # gopkg.in/testfixtures.v2 v2.5.0
  1217. ## explicit
  1218. gopkg.in/testfixtures.v2
  1219. # gopkg.in/toqueteos/substring.v1 v1.0.2
  1220. gopkg.in/toqueteos/substring.v1
  1221. # gopkg.in/warnings.v0 v0.1.2
  1222. gopkg.in/warnings.v0
  1223. # gopkg.in/yaml.v2 v2.3.0
  1224. ## explicit
  1225. gopkg.in/yaml.v2
  1226. # gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  1227. gopkg.in/yaml.v3
  1228. # mvdan.cc/xurls/v2 v2.1.0
  1229. ## explicit
  1230. mvdan.cc/xurls/v2
  1231. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  1232. ## explicit
  1233. strk.kbt.io/projects/go/libravatar
  1234. # xorm.io/builder v0.3.7
  1235. ## explicit
  1236. xorm.io/builder
  1237. # xorm.io/xorm v1.0.1
  1238. ## explicit
  1239. xorm.io/xorm
  1240. xorm.io/xorm/caches
  1241. xorm.io/xorm/contexts
  1242. xorm.io/xorm/convert
  1243. xorm.io/xorm/core
  1244. xorm.io/xorm/dialects
  1245. xorm.io/xorm/internal/json
  1246. xorm.io/xorm/internal/statements
  1247. xorm.io/xorm/internal/utils
  1248. xorm.io/xorm/log
  1249. xorm.io/xorm/names
  1250. xorm.io/xorm/schemas
  1251. xorm.io/xorm/tags