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

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