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.
 
 
 

24 lines
1.5 KiB

  1. {{define "Head"}}<title>Go Sub-Repository Packages - GoDoc</title><meta name="robots" content="NOINDEX">{{end}}
  2. {{define "Body"}}
  3. <h1>Go Sub-repository Packages</h1>
  4. These packages are part of the Go Project but outside the main Go tree. They are developed under looser compatibility requirements than the Go core.
  5. <h2>Repositories</h2>
  6. <ul class="list-unstyled">
  7. {{template "subrepo" map "name" "blog" "desc" "the content and server program for blog.golang.org."}}
  8. {{template "subrepo" map "name" "crypto" "desc" "additional cryptography packages."}}
  9. {{template "subrepo" map "name" "exp" "desc" "experimental code (handle with care)."}}
  10. {{template "subrepo" map "name" "image" "desc" "additional imaging packages."}}
  11. {{template "subrepo" map "name" "mobile" "desc" "libraries and build tools for Go on Android."}}
  12. {{template "subrepo" map "name" "net" "desc" "additional networking packages."}}
  13. {{template "subrepo" map "name" "sys" "desc" "for low-level interactions with the operating system."}}
  14. {{template "subrepo" map "name" "talks" "desc" "the content and server program for talks.golang.org."}}
  15. {{template "subrepo" map "name" "text" "desc" "packages for working with text."}}
  16. {{template "subrepo" map "name" "tools" "desc" "godoc, vet, cover, and other tools."}}
  17. </ul>
  18. <h2>Packages</h2>
  19. {{template "Pkgs" .pkgs}}
  20. {{end}}
  21. {{define "subrepo"}}<li><a href="https://go.googlesource.com/{{.name}}/+/master">golang.org/x/{{.name}}</a> — {{.desc}}{{end}}