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

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