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

934 lines
32 KiB

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
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
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
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>
4 years ago
  1. # cloud.google.com/go v0.45.0
  2. ## explicit
  3. cloud.google.com/go/compute/metadata
  4. # gitea.com/jolheiser/gitea-vet v0.1.0
  5. ## explicit
  6. gitea.com/jolheiser/gitea-vet
  7. gitea.com/jolheiser/gitea-vet/checks
  8. # gitea.com/lunny/levelqueue v0.3.0
  9. ## explicit
  10. gitea.com/lunny/levelqueue
  11. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  12. ## explicit
  13. gitea.com/macaron/binding
  14. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  15. ## explicit
  16. gitea.com/macaron/cache
  17. gitea.com/macaron/cache/memcache
  18. gitea.com/macaron/cache/redis
  19. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  20. ## explicit
  21. gitea.com/macaron/captcha
  22. # gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4
  23. ## explicit
  24. gitea.com/macaron/cors
  25. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  26. ## explicit
  27. gitea.com/macaron/csrf
  28. # gitea.com/macaron/gzip v0.0.0-20191118041502-506895b47aae
  29. ## explicit
  30. gitea.com/macaron/gzip
  31. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  32. ## explicit
  33. gitea.com/macaron/i18n
  34. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  35. ## explicit
  36. gitea.com/macaron/inject
  37. # gitea.com/macaron/macaron v1.4.0
  38. ## explicit
  39. gitea.com/macaron/macaron
  40. # gitea.com/macaron/session v0.0.0-20191207215012-613cebf0674d
  41. ## explicit
  42. gitea.com/macaron/session
  43. gitea.com/macaron/session/couchbase
  44. gitea.com/macaron/session/memcache
  45. gitea.com/macaron/session/mysql
  46. gitea.com/macaron/session/nodb
  47. gitea.com/macaron/session/postgres
  48. gitea.com/macaron/session/redis
  49. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  50. ## explicit
  51. gitea.com/macaron/toolbox
  52. # github.com/BurntSushi/toml v0.3.1
  53. ## explicit
  54. github.com/BurntSushi/toml
  55. # github.com/PuerkitoBio/goquery v1.5.1
  56. ## explicit
  57. github.com/PuerkitoBio/goquery
  58. # github.com/PuerkitoBio/purell v1.1.1
  59. github.com/PuerkitoBio/purell
  60. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  61. github.com/PuerkitoBio/urlesc
  62. # github.com/RoaringBitmap/roaring v0.4.23
  63. ## explicit
  64. github.com/RoaringBitmap/roaring
  65. # github.com/alecthomas/chroma v0.8.0
  66. ## explicit
  67. github.com/alecthomas/chroma
  68. github.com/alecthomas/chroma/formatters/html
  69. github.com/alecthomas/chroma/lexers
  70. github.com/alecthomas/chroma/lexers/a
  71. github.com/alecthomas/chroma/lexers/b
  72. github.com/alecthomas/chroma/lexers/c
  73. github.com/alecthomas/chroma/lexers/circular
  74. github.com/alecthomas/chroma/lexers/d
  75. github.com/alecthomas/chroma/lexers/e
  76. github.com/alecthomas/chroma/lexers/f
  77. github.com/alecthomas/chroma/lexers/g
  78. github.com/alecthomas/chroma/lexers/h
  79. github.com/alecthomas/chroma/lexers/i
  80. github.com/alecthomas/chroma/lexers/internal
  81. github.com/alecthomas/chroma/lexers/j
  82. github.com/alecthomas/chroma/lexers/k
  83. github.com/alecthomas/chroma/lexers/l
  84. github.com/alecthomas/chroma/lexers/m
  85. github.com/alecthomas/chroma/lexers/n
  86. github.com/alecthomas/chroma/lexers/o
  87. github.com/alecthomas/chroma/lexers/p
  88. github.com/alecthomas/chroma/lexers/q
  89. github.com/alecthomas/chroma/lexers/r
  90. github.com/alecthomas/chroma/lexers/s
  91. github.com/alecthomas/chroma/lexers/t
  92. github.com/alecthomas/chroma/lexers/v
  93. github.com/alecthomas/chroma/lexers/w
  94. github.com/alecthomas/chroma/lexers/x
  95. github.com/alecthomas/chroma/lexers/y
  96. github.com/alecthomas/chroma/lexers/z
  97. github.com/alecthomas/chroma/styles
  98. # github.com/andybalholm/brotli v0.0.0-20190621154722-5f990b63d2d6
  99. github.com/andybalholm/brotli
  100. # github.com/andybalholm/cascadia v1.1.0
  101. github.com/andybalholm/cascadia
  102. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  103. github.com/anmitsu/go-shlex
  104. # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
  105. github.com/asaskevich/govalidator
  106. # github.com/aymerick/douceur v0.2.0
  107. github.com/aymerick/douceur/css
  108. # github.com/beorn7/perks v1.0.1
  109. github.com/beorn7/perks/quantile
  110. # github.com/bgentry/speakeasy v0.1.0
  111. ## explicit
  112. # github.com/blevesearch/bleve v1.0.7
  113. ## explicit
  114. github.com/blevesearch/bleve
  115. github.com/blevesearch/bleve/analysis
  116. github.com/blevesearch/bleve/analysis/analyzer/custom
  117. github.com/blevesearch/bleve/analysis/analyzer/keyword
  118. github.com/blevesearch/bleve/analysis/analyzer/standard
  119. github.com/blevesearch/bleve/analysis/datetime/flexible
  120. github.com/blevesearch/bleve/analysis/datetime/optional
  121. github.com/blevesearch/bleve/analysis/lang/en
  122. github.com/blevesearch/bleve/analysis/token/lowercase
  123. github.com/blevesearch/bleve/analysis/token/porter
  124. github.com/blevesearch/bleve/analysis/token/stop
  125. github.com/blevesearch/bleve/analysis/token/unicodenorm
  126. github.com/blevesearch/bleve/analysis/tokenizer/single
  127. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  128. github.com/blevesearch/bleve/document
  129. github.com/blevesearch/bleve/geo
  130. github.com/blevesearch/bleve/index
  131. github.com/blevesearch/bleve/index/scorch
  132. github.com/blevesearch/bleve/index/scorch/mergeplan
  133. github.com/blevesearch/bleve/index/scorch/segment
  134. github.com/blevesearch/bleve/index/store
  135. github.com/blevesearch/bleve/index/store/boltdb
  136. github.com/blevesearch/bleve/index/store/gtreap
  137. github.com/blevesearch/bleve/index/upsidedown
  138. github.com/blevesearch/bleve/mapping
  139. github.com/blevesearch/bleve/numeric
  140. github.com/blevesearch/bleve/registry
  141. github.com/blevesearch/bleve/search
  142. github.com/blevesearch/bleve/search/collector
  143. github.com/blevesearch/bleve/search/facet
  144. github.com/blevesearch/bleve/search/highlight
  145. github.com/blevesearch/bleve/search/highlight/format/html
  146. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  147. github.com/blevesearch/bleve/search/highlight/highlighter/html
  148. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  149. github.com/blevesearch/bleve/search/query
  150. github.com/blevesearch/bleve/search/scorer
  151. github.com/blevesearch/bleve/search/searcher
  152. github.com/blevesearch/bleve/size
  153. # github.com/blevesearch/go-porterstemmer v1.0.3
  154. github.com/blevesearch/go-porterstemmer
  155. # github.com/blevesearch/mmap-go v1.0.2
  156. github.com/blevesearch/mmap-go
  157. # github.com/blevesearch/segment v0.9.0
  158. github.com/blevesearch/segment
  159. # github.com/blevesearch/snowballstem v0.9.0
  160. github.com/blevesearch/snowballstem
  161. github.com/blevesearch/snowballstem/english
  162. # github.com/blevesearch/zap/v11 v11.0.7
  163. github.com/blevesearch/zap/v11
  164. # github.com/blevesearch/zap/v12 v12.0.7
  165. github.com/blevesearch/zap/v12
  166. # github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
  167. github.com/boombuler/barcode
  168. github.com/boombuler/barcode/qr
  169. github.com/boombuler/barcode/utils
  170. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  171. github.com/bradfitz/gomemcache/memcache
  172. # github.com/chris-ramon/douceur v0.2.0
  173. github.com/chris-ramon/douceur/parser
  174. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  175. ## explicit
  176. github.com/couchbase/gomemcached
  177. github.com/couchbase/gomemcached/client
  178. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  179. github.com/couchbase/goutils/logging
  180. github.com/couchbase/goutils/scramsha
  181. # github.com/couchbase/vellum v1.0.1
  182. github.com/couchbase/vellum
  183. github.com/couchbase/vellum/levenshtein
  184. github.com/couchbase/vellum/regexp
  185. github.com/couchbase/vellum/utf8
  186. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  187. github.com/couchbaselabs/go-couchbase
  188. # github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d
  189. ## explicit
  190. # github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548
  191. ## explicit
  192. # github.com/cznic/strutil v0.0.0-20181122101858-275e90344537
  193. ## explicit
  194. # github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964
  195. github.com/danwakefield/fnmatch
  196. # github.com/davecgh/go-spew v1.1.1
  197. github.com/davecgh/go-spew/spew
  198. # github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc
  199. ## explicit
  200. github.com/denisenkom/go-mssqldb
  201. github.com/denisenkom/go-mssqldb/internal/cp
  202. github.com/denisenkom/go-mssqldb/internal/decimal
  203. github.com/denisenkom/go-mssqldb/internal/querytext
  204. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  205. ## explicit
  206. github.com/dgrijalva/jwt-go
  207. # github.com/dlclark/regexp2 v1.2.0
  208. github.com/dlclark/regexp2
  209. github.com/dlclark/regexp2/syntax
  210. # github.com/dsnet/compress v0.0.1
  211. github.com/dsnet/compress
  212. github.com/dsnet/compress/bzip2
  213. github.com/dsnet/compress/bzip2/internal/sais
  214. github.com/dsnet/compress/internal
  215. github.com/dsnet/compress/internal/errors
  216. github.com/dsnet/compress/internal/prefix
  217. # github.com/dustin/go-humanize v1.0.0
  218. ## explicit
  219. github.com/dustin/go-humanize
  220. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  221. ## explicit
  222. github.com/editorconfig/editorconfig-core-go/v2
  223. # github.com/emirpasic/gods v1.12.0
  224. ## explicit
  225. github.com/emirpasic/gods/containers
  226. github.com/emirpasic/gods/lists
  227. github.com/emirpasic/gods/lists/arraylist
  228. github.com/emirpasic/gods/trees
  229. github.com/emirpasic/gods/trees/binaryheap
  230. github.com/emirpasic/gods/utils
  231. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  232. ## explicit
  233. github.com/ethantkoenig/rupture
  234. # github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51
  235. ## explicit
  236. # github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
  237. ## explicit
  238. # github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870
  239. ## explicit
  240. # github.com/fatih/color v1.9.0
  241. github.com/fatih/color
  242. # github.com/fatih/structtag v1.2.0
  243. github.com/fatih/structtag
  244. # github.com/fsnotify/fsnotify v1.4.7
  245. github.com/fsnotify/fsnotify
  246. # github.com/gliderlabs/ssh v0.2.2
  247. ## explicit
  248. github.com/gliderlabs/ssh
  249. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  250. ## explicit
  251. github.com/glycerine/go-unsnap-stream
  252. # github.com/go-enry/go-enry/v2 v2.5.2
  253. ## explicit
  254. github.com/go-enry/go-enry/v2
  255. github.com/go-enry/go-enry/v2/data
  256. github.com/go-enry/go-enry/v2/data/rule
  257. github.com/go-enry/go-enry/v2/internal/tokenizer
  258. github.com/go-enry/go-enry/v2/internal/tokenizer/flex
  259. github.com/go-enry/go-enry/v2/regex
  260. # github.com/go-enry/go-oniguruma v1.2.1
  261. github.com/go-enry/go-oniguruma
  262. # github.com/go-git/gcfg v1.5.0
  263. github.com/go-git/gcfg
  264. github.com/go-git/gcfg/scanner
  265. github.com/go-git/gcfg/token
  266. github.com/go-git/gcfg/types
  267. # github.com/go-git/go-billy/v5 v5.0.0
  268. ## explicit
  269. github.com/go-git/go-billy/v5
  270. github.com/go-git/go-billy/v5/helper/chroot
  271. github.com/go-git/go-billy/v5/helper/polyfill
  272. github.com/go-git/go-billy/v5/osfs
  273. github.com/go-git/go-billy/v5/util
  274. # github.com/go-git/go-git/v5 v5.1.0
  275. ## explicit
  276. github.com/go-git/go-git/v5
  277. github.com/go-git/go-git/v5/config
  278. github.com/go-git/go-git/v5/internal/revision
  279. github.com/go-git/go-git/v5/internal/url
  280. github.com/go-git/go-git/v5/plumbing
  281. github.com/go-git/go-git/v5/plumbing/cache
  282. github.com/go-git/go-git/v5/plumbing/color
  283. github.com/go-git/go-git/v5/plumbing/filemode
  284. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  285. github.com/go-git/go-git/v5/plumbing/format/config
  286. github.com/go-git/go-git/v5/plumbing/format/diff
  287. github.com/go-git/go-git/v5/plumbing/format/gitignore
  288. github.com/go-git/go-git/v5/plumbing/format/idxfile
  289. github.com/go-git/go-git/v5/plumbing/format/index
  290. github.com/go-git/go-git/v5/plumbing/format/objfile
  291. github.com/go-git/go-git/v5/plumbing/format/packfile
  292. github.com/go-git/go-git/v5/plumbing/format/pktline
  293. github.com/go-git/go-git/v5/plumbing/object
  294. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  295. github.com/go-git/go-git/v5/plumbing/protocol/packp
  296. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  297. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  298. github.com/go-git/go-git/v5/plumbing/revlist
  299. github.com/go-git/go-git/v5/plumbing/storer
  300. github.com/go-git/go-git/v5/plumbing/transport
  301. github.com/go-git/go-git/v5/plumbing/transport/client
  302. github.com/go-git/go-git/v5/plumbing/transport/file
  303. github.com/go-git/go-git/v5/plumbing/transport/git
  304. github.com/go-git/go-git/v5/plumbing/transport/http
  305. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  306. github.com/go-git/go-git/v5/plumbing/transport/server
  307. github.com/go-git/go-git/v5/plumbing/transport/ssh
  308. github.com/go-git/go-git/v5/storage
  309. github.com/go-git/go-git/v5/storage/filesystem
  310. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  311. github.com/go-git/go-git/v5/storage/memory
  312. github.com/go-git/go-git/v5/utils/binary
  313. github.com/go-git/go-git/v5/utils/diff
  314. github.com/go-git/go-git/v5/utils/ioutil
  315. github.com/go-git/go-git/v5/utils/merkletrie
  316. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  317. github.com/go-git/go-git/v5/utils/merkletrie/index
  318. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  319. github.com/go-git/go-git/v5/utils/merkletrie/noder
  320. # github.com/go-openapi/analysis v0.19.5
  321. github.com/go-openapi/analysis
  322. github.com/go-openapi/analysis/internal
  323. # github.com/go-openapi/errors v0.19.2
  324. github.com/go-openapi/errors
  325. # github.com/go-openapi/inflect v0.19.0
  326. github.com/go-openapi/inflect
  327. # github.com/go-openapi/jsonpointer v0.19.3
  328. github.com/go-openapi/jsonpointer
  329. # github.com/go-openapi/jsonreference v0.19.3
  330. ## explicit
  331. github.com/go-openapi/jsonreference
  332. # github.com/go-openapi/loads v0.19.3
  333. github.com/go-openapi/loads
  334. github.com/go-openapi/loads/fmts
  335. # github.com/go-openapi/runtime v0.19.5
  336. github.com/go-openapi/runtime
  337. github.com/go-openapi/runtime/logger
  338. github.com/go-openapi/runtime/middleware
  339. github.com/go-openapi/runtime/middleware/denco
  340. github.com/go-openapi/runtime/middleware/header
  341. github.com/go-openapi/runtime/middleware/untyped
  342. github.com/go-openapi/runtime/security
  343. # github.com/go-openapi/spec v0.19.3
  344. github.com/go-openapi/spec
  345. # github.com/go-openapi/strfmt v0.19.3
  346. github.com/go-openapi/strfmt
  347. # github.com/go-openapi/swag v0.19.5
  348. github.com/go-openapi/swag
  349. # github.com/go-openapi/validate v0.19.3
  350. github.com/go-openapi/validate
  351. # github.com/go-redis/redis v6.15.2+incompatible
  352. ## explicit
  353. github.com/go-redis/redis
  354. github.com/go-redis/redis/internal
  355. github.com/go-redis/redis/internal/consistenthash
  356. github.com/go-redis/redis/internal/hashtag
  357. github.com/go-redis/redis/internal/pool
  358. github.com/go-redis/redis/internal/proto
  359. github.com/go-redis/redis/internal/util
  360. # github.com/go-sql-driver/mysql v1.5.0
  361. ## explicit
  362. github.com/go-sql-driver/mysql
  363. # github.com/go-stack/stack v1.8.0
  364. github.com/go-stack/stack
  365. # github.com/go-swagger/go-swagger v0.21.0
  366. ## explicit
  367. github.com/go-swagger/go-swagger/cmd/swagger
  368. github.com/go-swagger/go-swagger/cmd/swagger/commands
  369. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  370. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  371. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  372. github.com/go-swagger/go-swagger/codescan
  373. github.com/go-swagger/go-swagger/generator
  374. github.com/go-swagger/go-swagger/scan
  375. # github.com/go-testfixtures/testfixtures/v3 v3.2.0
  376. ## explicit
  377. github.com/go-testfixtures/testfixtures/v3
  378. # github.com/gobwas/glob v0.2.3
  379. ## explicit
  380. github.com/gobwas/glob
  381. github.com/gobwas/glob/compiler
  382. github.com/gobwas/glob/match
  383. github.com/gobwas/glob/syntax
  384. github.com/gobwas/glob/syntax/ast
  385. github.com/gobwas/glob/syntax/lexer
  386. github.com/gobwas/glob/util/runes
  387. github.com/gobwas/glob/util/strings
  388. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  389. ## explicit
  390. github.com/gogs/chardet
  391. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  392. ## explicit
  393. github.com/gogs/cron
  394. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  395. github.com/golang-sql/civil
  396. # github.com/golang/gddo v0.0.0-20190419222130-af0f2af80721
  397. github.com/golang/gddo/httputil
  398. github.com/golang/gddo/httputil/header
  399. # github.com/golang/protobuf v1.4.1
  400. ## explicit
  401. github.com/golang/protobuf/proto
  402. # github.com/golang/snappy v0.0.1
  403. github.com/golang/snappy
  404. # github.com/google/go-github/v24 v24.0.1
  405. ## explicit
  406. github.com/google/go-github/v24/github
  407. # github.com/google/go-querystring v1.0.0
  408. github.com/google/go-querystring/query
  409. # github.com/google/uuid v1.1.1
  410. ## explicit
  411. github.com/google/uuid
  412. # github.com/gorilla/context v1.1.1
  413. ## explicit
  414. github.com/gorilla/context
  415. # github.com/gorilla/css v1.0.0
  416. github.com/gorilla/css/scanner
  417. # github.com/gorilla/handlers v1.4.2
  418. github.com/gorilla/handlers
  419. # github.com/gorilla/mux v1.7.3
  420. github.com/gorilla/mux
  421. # github.com/gorilla/securecookie v1.1.1
  422. github.com/gorilla/securecookie
  423. # github.com/gorilla/sessions v1.2.0
  424. github.com/gorilla/sessions
  425. # github.com/hashicorp/go-cleanhttp v0.5.1
  426. github.com/hashicorp/go-cleanhttp
  427. # github.com/hashicorp/go-retryablehttp v0.6.6
  428. ## explicit
  429. github.com/hashicorp/go-retryablehttp
  430. # github.com/hashicorp/hcl v1.0.0
  431. github.com/hashicorp/hcl
  432. github.com/hashicorp/hcl/hcl/ast
  433. github.com/hashicorp/hcl/hcl/parser
  434. github.com/hashicorp/hcl/hcl/printer
  435. github.com/hashicorp/hcl/hcl/scanner
  436. github.com/hashicorp/hcl/hcl/strconv
  437. github.com/hashicorp/hcl/hcl/token
  438. github.com/hashicorp/hcl/json/parser
  439. github.com/hashicorp/hcl/json/scanner
  440. github.com/hashicorp/hcl/json/token
  441. # github.com/huandu/xstrings v1.3.0
  442. ## explicit
  443. github.com/huandu/xstrings
  444. # github.com/imdario/mergo v0.3.9
  445. github.com/imdario/mergo
  446. # github.com/issue9/assert v1.3.2
  447. ## explicit
  448. # github.com/issue9/identicon v1.0.1
  449. ## explicit
  450. github.com/issue9/identicon
  451. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  452. ## explicit
  453. github.com/jaytaylor/html2text
  454. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  455. github.com/jbenet/go-context/io
  456. # github.com/jessevdk/go-flags v1.4.0
  457. github.com/jessevdk/go-flags
  458. # github.com/jmhodges/levigo v1.0.0
  459. ## explicit
  460. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  461. ## explicit
  462. github.com/kballard/go-shellquote
  463. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  464. github.com/kevinburke/ssh_config
  465. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  466. ## explicit
  467. github.com/keybase/go-crypto/brainpool
  468. github.com/keybase/go-crypto/cast5
  469. github.com/keybase/go-crypto/curve25519
  470. github.com/keybase/go-crypto/ed25519
  471. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  472. github.com/keybase/go-crypto/openpgp
  473. github.com/keybase/go-crypto/openpgp/armor
  474. github.com/keybase/go-crypto/openpgp/ecdh
  475. github.com/keybase/go-crypto/openpgp/elgamal
  476. github.com/keybase/go-crypto/openpgp/errors
  477. github.com/keybase/go-crypto/openpgp/packet
  478. github.com/keybase/go-crypto/openpgp/s2k
  479. github.com/keybase/go-crypto/rsa
  480. # github.com/klauspost/compress v1.10.2
  481. ## explicit
  482. github.com/klauspost/compress/flate
  483. github.com/klauspost/compress/fse
  484. github.com/klauspost/compress/gzip
  485. github.com/klauspost/compress/huff0
  486. github.com/klauspost/compress/snappy
  487. github.com/klauspost/compress/zstd
  488. github.com/klauspost/compress/zstd/internal/xxhash
  489. # github.com/klauspost/pgzip v1.2.1
  490. github.com/klauspost/pgzip
  491. # github.com/kr/pretty v0.1.0
  492. github.com/kr/pretty
  493. # github.com/kr/text v0.2.0
  494. github.com/kr/text
  495. # github.com/lafriks/xormstore v1.3.2
  496. ## explicit
  497. github.com/lafriks/xormstore
  498. github.com/lafriks/xormstore/util
  499. # github.com/lib/pq v1.7.0
  500. ## explicit
  501. github.com/lib/pq
  502. github.com/lib/pq/oid
  503. github.com/lib/pq/scram
  504. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  505. ## explicit
  506. github.com/lunny/dingtalk_webhook
  507. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  508. github.com/lunny/log
  509. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  510. github.com/lunny/nodb
  511. github.com/lunny/nodb/config
  512. github.com/lunny/nodb/store
  513. github.com/lunny/nodb/store/driver
  514. github.com/lunny/nodb/store/goleveldb
  515. # github.com/magiconair/properties v1.8.1
  516. github.com/magiconair/properties
  517. # github.com/mailru/easyjson v0.7.0
  518. ## explicit
  519. github.com/mailru/easyjson
  520. github.com/mailru/easyjson/buffer
  521. github.com/mailru/easyjson/jlexer
  522. github.com/mailru/easyjson/jwriter
  523. # github.com/markbates/goth v1.61.2
  524. ## explicit
  525. github.com/markbates/goth
  526. github.com/markbates/goth/gothic
  527. github.com/markbates/goth/providers/bitbucket
  528. github.com/markbates/goth/providers/discord
  529. github.com/markbates/goth/providers/dropbox
  530. github.com/markbates/goth/providers/facebook
  531. github.com/markbates/goth/providers/gitea
  532. github.com/markbates/goth/providers/github
  533. github.com/markbates/goth/providers/gitlab
  534. github.com/markbates/goth/providers/google
  535. github.com/markbates/goth/providers/nextcloud
  536. github.com/markbates/goth/providers/openidConnect
  537. github.com/markbates/goth/providers/twitter
  538. github.com/markbates/goth/providers/yandex
  539. # github.com/mattn/go-colorable v0.1.6
  540. github.com/mattn/go-colorable
  541. # github.com/mattn/go-isatty v0.0.12
  542. ## explicit
  543. github.com/mattn/go-isatty
  544. # github.com/mattn/go-runewidth v0.0.7
  545. github.com/mattn/go-runewidth
  546. # github.com/mattn/go-sqlite3 v2.0.2+incompatible
  547. ## explicit
  548. github.com/mattn/go-sqlite3
  549. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  550. github.com/matttproud/golang_protobuf_extensions/pbutil
  551. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  552. ## explicit
  553. github.com/mcuadros/go-version
  554. # github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
  555. ## explicit
  556. github.com/mgechev/dots
  557. # github.com/mgechev/revive v1.0.2
  558. ## explicit
  559. github.com/mgechev/revive/formatter
  560. github.com/mgechev/revive/lint
  561. github.com/mgechev/revive/rule
  562. # github.com/mholt/archiver/v3 v3.3.0
  563. ## explicit
  564. github.com/mholt/archiver/v3
  565. # github.com/microcosm-cc/bluemonday v1.0.3-0.20191119130333-0a75d7616912
  566. ## explicit
  567. github.com/microcosm-cc/bluemonday
  568. # github.com/mitchellh/go-homedir v1.1.0
  569. ## explicit
  570. github.com/mitchellh/go-homedir
  571. # github.com/mitchellh/mapstructure v1.1.2
  572. github.com/mitchellh/mapstructure
  573. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  574. github.com/mrjones/oauth
  575. # github.com/mschoch/smat v0.2.0
  576. github.com/mschoch/smat
  577. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  578. ## explicit
  579. github.com/msteinert/pam
  580. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  581. ## explicit
  582. github.com/nfnt/resize
  583. # github.com/niklasfasching/go-org v0.1.9
  584. ## explicit
  585. github.com/niklasfasching/go-org/org
  586. # github.com/nwaples/rardecode v1.0.0
  587. github.com/nwaples/rardecode
  588. # github.com/olekukonko/tablewriter v0.0.4
  589. github.com/olekukonko/tablewriter
  590. # github.com/oliamb/cutter v0.2.2
  591. ## explicit
  592. github.com/oliamb/cutter
  593. # github.com/olivere/elastic/v7 v7.0.9
  594. ## explicit
  595. github.com/olivere/elastic/v7
  596. github.com/olivere/elastic/v7/config
  597. github.com/olivere/elastic/v7/uritemplates
  598. # github.com/pelletier/go-toml v1.4.0
  599. github.com/pelletier/go-toml
  600. # github.com/philhofer/fwd v1.0.0
  601. github.com/philhofer/fwd
  602. # github.com/pierrec/lz4 v2.0.5+incompatible
  603. github.com/pierrec/lz4
  604. github.com/pierrec/lz4/internal/xxh32
  605. # github.com/pkg/errors v0.9.1
  606. ## explicit
  607. github.com/pkg/errors
  608. # github.com/pmezard/go-difflib v1.0.0
  609. github.com/pmezard/go-difflib/difflib
  610. # github.com/pquerna/otp v1.2.0
  611. ## explicit
  612. github.com/pquerna/otp
  613. github.com/pquerna/otp/hotp
  614. github.com/pquerna/otp/totp
  615. # github.com/prometheus/client_golang v1.1.0
  616. ## explicit
  617. github.com/prometheus/client_golang/prometheus
  618. github.com/prometheus/client_golang/prometheus/internal
  619. github.com/prometheus/client_golang/prometheus/promhttp
  620. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  621. ## explicit
  622. github.com/prometheus/client_model/go
  623. # github.com/prometheus/common v0.6.0
  624. github.com/prometheus/common/expfmt
  625. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  626. github.com/prometheus/common/model
  627. # github.com/prometheus/procfs v0.0.4
  628. ## explicit
  629. github.com/prometheus/procfs
  630. github.com/prometheus/procfs/internal/fs
  631. github.com/prometheus/procfs/internal/util
  632. # github.com/quasoft/websspi v1.0.0
  633. ## explicit
  634. github.com/quasoft/websspi
  635. github.com/quasoft/websspi/secctx
  636. # github.com/remyoudompheng/bigfft v0.0.0-20190321074620-2f0d2b0e0001
  637. ## explicit
  638. # github.com/sergi/go-diff v1.1.0
  639. ## explicit
  640. github.com/sergi/go-diff/diffmatchpatch
  641. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  642. ## explicit
  643. github.com/shurcooL/httpfs/vfsutil
  644. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  645. ## explicit
  646. github.com/shurcooL/vfsgen
  647. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  648. github.com/siddontang/go-snappy/snappy
  649. # github.com/spf13/afero v1.2.2
  650. github.com/spf13/afero
  651. github.com/spf13/afero/mem
  652. # github.com/spf13/cast v1.3.0
  653. github.com/spf13/cast
  654. # github.com/spf13/jwalterweatherman v1.1.0
  655. github.com/spf13/jwalterweatherman
  656. # github.com/spf13/pflag v1.0.5
  657. github.com/spf13/pflag
  658. # github.com/spf13/viper v1.4.0
  659. github.com/spf13/viper
  660. # github.com/steveyen/gtreap v0.1.0
  661. github.com/steveyen/gtreap
  662. # github.com/stretchr/testify v1.4.0
  663. ## explicit
  664. github.com/stretchr/testify/assert
  665. github.com/stretchr/testify/require
  666. # github.com/syndtr/goleveldb v1.0.0
  667. github.com/syndtr/goleveldb/leveldb
  668. github.com/syndtr/goleveldb/leveldb/cache
  669. github.com/syndtr/goleveldb/leveldb/comparer
  670. github.com/syndtr/goleveldb/leveldb/errors
  671. github.com/syndtr/goleveldb/leveldb/filter
  672. github.com/syndtr/goleveldb/leveldb/iterator
  673. github.com/syndtr/goleveldb/leveldb/journal
  674. github.com/syndtr/goleveldb/leveldb/memdb
  675. github.com/syndtr/goleveldb/leveldb/opt
  676. github.com/syndtr/goleveldb/leveldb/storage
  677. github.com/syndtr/goleveldb/leveldb/table
  678. github.com/syndtr/goleveldb/leveldb/util
  679. # github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481
  680. ## explicit
  681. # github.com/tinylib/msgp v1.1.2
  682. ## explicit
  683. github.com/tinylib/msgp/msgp
  684. # github.com/toqueteos/webbrowser v1.2.0
  685. github.com/toqueteos/webbrowser
  686. # github.com/tstranex/u2f v1.0.0
  687. ## explicit
  688. github.com/tstranex/u2f
  689. # github.com/ulikunitz/xz v0.5.6
  690. github.com/ulikunitz/xz
  691. github.com/ulikunitz/xz/internal/hash
  692. github.com/ulikunitz/xz/internal/xlog
  693. github.com/ulikunitz/xz/lzma
  694. # github.com/unknwon/com v1.0.1
  695. ## explicit
  696. github.com/unknwon/com
  697. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  698. ## explicit
  699. github.com/unknwon/i18n
  700. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  701. ## explicit
  702. github.com/unknwon/paginater
  703. # github.com/urfave/cli v1.20.0
  704. ## explicit
  705. github.com/urfave/cli
  706. # github.com/willf/bitset v1.1.10
  707. github.com/willf/bitset
  708. # github.com/xanzy/go-gitlab v0.31.0
  709. ## explicit
  710. github.com/xanzy/go-gitlab
  711. # github.com/xanzy/ssh-agent v0.2.1
  712. github.com/xanzy/ssh-agent
  713. # github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
  714. github.com/xi2/xz
  715. # github.com/yohcop/openid-go v1.0.0
  716. ## explicit
  717. github.com/yohcop/openid-go
  718. # github.com/yuin/goldmark v1.1.32
  719. ## explicit
  720. github.com/yuin/goldmark
  721. github.com/yuin/goldmark/ast
  722. github.com/yuin/goldmark/extension
  723. github.com/yuin/goldmark/extension/ast
  724. github.com/yuin/goldmark/parser
  725. github.com/yuin/goldmark/renderer
  726. github.com/yuin/goldmark/renderer/html
  727. github.com/yuin/goldmark/text
  728. github.com/yuin/goldmark/util
  729. # github.com/yuin/goldmark-highlighting v0.0.0-20200307114337-60d527fdb691
  730. ## explicit
  731. github.com/yuin/goldmark-highlighting
  732. # github.com/yuin/goldmark-meta v0.0.0-20191126180153-f0638e958b60
  733. ## explicit
  734. github.com/yuin/goldmark-meta
  735. # go.etcd.io/bbolt v1.3.4
  736. go.etcd.io/bbolt
  737. # go.mongodb.org/mongo-driver v1.1.1
  738. go.mongodb.org/mongo-driver/bson
  739. go.mongodb.org/mongo-driver/bson/bsoncodec
  740. go.mongodb.org/mongo-driver/bson/bsonrw
  741. go.mongodb.org/mongo-driver/bson/bsontype
  742. go.mongodb.org/mongo-driver/bson/primitive
  743. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  744. # golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9
  745. ## explicit
  746. golang.org/x/crypto/acme
  747. golang.org/x/crypto/acme/autocert
  748. golang.org/x/crypto/argon2
  749. golang.org/x/crypto/bcrypt
  750. golang.org/x/crypto/blake2b
  751. golang.org/x/crypto/blowfish
  752. golang.org/x/crypto/cast5
  753. golang.org/x/crypto/chacha20
  754. golang.org/x/crypto/curve25519
  755. golang.org/x/crypto/ed25519
  756. golang.org/x/crypto/ed25519/internal/edwards25519
  757. golang.org/x/crypto/internal/subtle
  758. golang.org/x/crypto/md4
  759. golang.org/x/crypto/openpgp
  760. golang.org/x/crypto/openpgp/armor
  761. golang.org/x/crypto/openpgp/elgamal
  762. golang.org/x/crypto/openpgp/errors
  763. golang.org/x/crypto/openpgp/packet
  764. golang.org/x/crypto/openpgp/s2k
  765. golang.org/x/crypto/pbkdf2
  766. golang.org/x/crypto/poly1305
  767. golang.org/x/crypto/scrypt
  768. golang.org/x/crypto/ssh
  769. golang.org/x/crypto/ssh/agent
  770. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  771. golang.org/x/crypto/ssh/knownhosts
  772. # golang.org/x/mod v0.2.0
  773. golang.org/x/mod/module
  774. golang.org/x/mod/semver
  775. # golang.org/x/net v0.0.0-20200602114024-627f9648deb9
  776. ## explicit
  777. golang.org/x/net/context
  778. golang.org/x/net/context/ctxhttp
  779. golang.org/x/net/html
  780. golang.org/x/net/html/atom
  781. golang.org/x/net/html/charset
  782. golang.org/x/net/idna
  783. golang.org/x/net/internal/socks
  784. golang.org/x/net/proxy
  785. # golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  786. ## explicit
  787. golang.org/x/oauth2
  788. golang.org/x/oauth2/google
  789. golang.org/x/oauth2/internal
  790. golang.org/x/oauth2/jws
  791. golang.org/x/oauth2/jwt
  792. # golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1
  793. ## explicit
  794. golang.org/x/sys/cpu
  795. golang.org/x/sys/internal/unsafeheader
  796. golang.org/x/sys/unix
  797. golang.org/x/sys/windows
  798. golang.org/x/sys/windows/svc
  799. golang.org/x/sys/windows/svc/debug
  800. # golang.org/x/text v0.3.2
  801. ## explicit
  802. golang.org/x/text/encoding
  803. golang.org/x/text/encoding/charmap
  804. golang.org/x/text/encoding/htmlindex
  805. golang.org/x/text/encoding/internal
  806. golang.org/x/text/encoding/internal/identifier
  807. golang.org/x/text/encoding/japanese
  808. golang.org/x/text/encoding/korean
  809. golang.org/x/text/encoding/simplifiedchinese
  810. golang.org/x/text/encoding/traditionalchinese
  811. golang.org/x/text/encoding/unicode
  812. golang.org/x/text/internal/language
  813. golang.org/x/text/internal/language/compact
  814. golang.org/x/text/internal/tag
  815. golang.org/x/text/internal/utf8internal
  816. golang.org/x/text/language
  817. golang.org/x/text/runes
  818. golang.org/x/text/secure/bidirule
  819. golang.org/x/text/transform
  820. golang.org/x/text/unicode/bidi
  821. golang.org/x/text/unicode/norm
  822. golang.org/x/text/width
  823. # golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
  824. ## explicit
  825. golang.org/x/time/rate
  826. # golang.org/x/tools v0.0.0-20200325010219-a49f79bcc224
  827. ## explicit
  828. golang.org/x/tools/cover
  829. golang.org/x/tools/go/analysis
  830. golang.org/x/tools/go/analysis/internal/analysisflags
  831. golang.org/x/tools/go/analysis/internal/facts
  832. golang.org/x/tools/go/analysis/unitchecker
  833. golang.org/x/tools/go/ast/astutil
  834. golang.org/x/tools/go/buildutil
  835. golang.org/x/tools/go/gcexportdata
  836. golang.org/x/tools/go/internal/cgo
  837. golang.org/x/tools/go/internal/gcimporter
  838. golang.org/x/tools/go/internal/packagesdriver
  839. golang.org/x/tools/go/loader
  840. golang.org/x/tools/go/packages
  841. golang.org/x/tools/go/types/objectpath
  842. golang.org/x/tools/imports
  843. golang.org/x/tools/internal/fastwalk
  844. golang.org/x/tools/internal/gocommand
  845. golang.org/x/tools/internal/gopathwalk
  846. golang.org/x/tools/internal/imports
  847. golang.org/x/tools/internal/packagesinternal
  848. # golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  849. golang.org/x/xerrors
  850. golang.org/x/xerrors/internal
  851. # google.golang.org/appengine v1.6.5
  852. ## explicit
  853. google.golang.org/appengine
  854. google.golang.org/appengine/internal
  855. google.golang.org/appengine/internal/app_identity
  856. google.golang.org/appengine/internal/base
  857. google.golang.org/appengine/internal/datastore
  858. google.golang.org/appengine/internal/log
  859. google.golang.org/appengine/internal/modules
  860. google.golang.org/appengine/internal/remote_api
  861. google.golang.org/appengine/internal/urlfetch
  862. google.golang.org/appengine/urlfetch
  863. # google.golang.org/protobuf v1.22.0
  864. google.golang.org/protobuf/encoding/prototext
  865. google.golang.org/protobuf/encoding/protowire
  866. google.golang.org/protobuf/internal/descfmt
  867. google.golang.org/protobuf/internal/descopts
  868. google.golang.org/protobuf/internal/detrand
  869. google.golang.org/protobuf/internal/encoding/defval
  870. google.golang.org/protobuf/internal/encoding/messageset
  871. google.golang.org/protobuf/internal/encoding/tag
  872. google.golang.org/protobuf/internal/encoding/text
  873. google.golang.org/protobuf/internal/errors
  874. google.golang.org/protobuf/internal/fieldnum
  875. google.golang.org/protobuf/internal/fieldsort
  876. google.golang.org/protobuf/internal/filedesc
  877. google.golang.org/protobuf/internal/filetype
  878. google.golang.org/protobuf/internal/flags
  879. google.golang.org/protobuf/internal/genname
  880. google.golang.org/protobuf/internal/impl
  881. google.golang.org/protobuf/internal/mapsort
  882. google.golang.org/protobuf/internal/pragma
  883. google.golang.org/protobuf/internal/set
  884. google.golang.org/protobuf/internal/strs
  885. google.golang.org/protobuf/internal/version
  886. google.golang.org/protobuf/proto
  887. google.golang.org/protobuf/reflect/protoreflect
  888. google.golang.org/protobuf/reflect/protoregistry
  889. google.golang.org/protobuf/runtime/protoiface
  890. google.golang.org/protobuf/runtime/protoimpl
  891. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  892. ## explicit
  893. gopkg.in/alexcesaro/quotedprintable.v3
  894. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  895. ## explicit
  896. gopkg.in/asn1-ber.v1
  897. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  898. ## explicit
  899. gopkg.in/gomail.v2
  900. # gopkg.in/ini.v1 v1.52.0
  901. ## explicit
  902. gopkg.in/ini.v1
  903. # gopkg.in/ldap.v3 v3.0.2
  904. ## explicit
  905. gopkg.in/ldap.v3
  906. # gopkg.in/warnings.v0 v0.1.2
  907. gopkg.in/warnings.v0
  908. # gopkg.in/yaml.v2 v2.3.0
  909. ## explicit
  910. gopkg.in/yaml.v2
  911. # mvdan.cc/xurls/v2 v2.1.0
  912. ## explicit
  913. mvdan.cc/xurls/v2
  914. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  915. ## explicit
  916. strk.kbt.io/projects/go/libravatar
  917. # xorm.io/builder v0.3.7
  918. ## explicit
  919. xorm.io/builder
  920. # xorm.io/xorm v1.0.4-0.20200718080127-318102c9ff87
  921. ## explicit
  922. xorm.io/xorm
  923. xorm.io/xorm/caches
  924. xorm.io/xorm/contexts
  925. xorm.io/xorm/convert
  926. xorm.io/xorm/core
  927. xorm.io/xorm/dialects
  928. xorm.io/xorm/internal/json
  929. xorm.io/xorm/internal/statements
  930. xorm.io/xorm/internal/utils
  931. xorm.io/xorm/log
  932. xorm.io/xorm/names
  933. xorm.io/xorm/schemas
  934. xorm.io/xorm/tags