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.

Gopkg.toml 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. ## Gopkg.toml example (these lines may be deleted)
  2. ## "required" lists a set of packages (not projects) that must be included in
  3. ## Gopkg.lock. This list is merged with the set of packages imported by the current
  4. ## project. Use it when your project needs a package it doesn't explicitly import -
  5. ## including "main" packages.
  6. # required = ["github.com/user/thing/cmd/thing"]
  7. ## "ignored" lists a set of packages (not projects) that are ignored when
  8. ## dep statically analyzes source code. Ignored packages can be in this project,
  9. ## or in a dependency.
  10. # ignored = ["github.com/user/project/badpkg"]
  11. ## Dependencies define constraints on dependent projects. They are respected by
  12. ## dep whether coming from the Gopkg.toml of the current project or a dependency.
  13. # [[dependencies]]
  14. ## Required: the root import path of the project being constrained.
  15. # name = "github.com/user/project"
  16. #
  17. ## Recommended: the version constraint to enforce for the project.
  18. ## Only one of "branch", "version" or "revision" can be specified.
  19. # version = "1.0.0"
  20. # branch = "master"
  21. # revision = "abc123"
  22. #
  23. ## Optional: an alternate location (URL or import path) for the project's source.
  24. # source = "https://github.com/myfork/package.git"
  25. ## Overrides have the same structure as [[dependencies]], but supercede all
  26. ## [[dependencies]] declarations from all projects. Only the current project's
  27. ## [[overrides]] are applied.
  28. ##
  29. ## Overrides are a sledgehammer. Use them only as a last resort.
  30. # [[overrides]]
  31. ## Required: the root import path of the project being constrained.
  32. # name = "github.com/user/project"
  33. #
  34. ## Optional: specifying a version constraint override will cause all other
  35. ## constraints on this project to be ignored; only the overriden constraint
  36. ## need be satisfied.
  37. ## Again, only one of "branch", "version" or "revision" can be specified.
  38. # version = "1.0.0"
  39. # branch = "master"
  40. # revision = "abc123"
  41. #
  42. ## Optional: specifying an alternate source location as an override will
  43. ## enforce that the alternate location is used for that project, regardless of
  44. ## what source location any dependent projects specify.
  45. # source = "https://github.com/myfork/package.git"
  46. [[dependencies]]
  47. name = "code.cloudfoundry.org/bytefmt"
  48. revision = "cbe033486cf0620d3bb77d8ef7f22ab346ad3628"
  49. [[dependencies]]
  50. branch = "master"
  51. name = "github.com/DanielOaks/girc-go"
  52. [[dependencies]]
  53. branch = "master"
  54. name = "github.com/DanielOaks/go-ident"
  55. [[dependencies]]
  56. branch = "master"
  57. name = "github.com/docopt/docopt-go"
  58. [[dependencies]]
  59. branch = "master"
  60. name = "github.com/gorilla/mux"
  61. [[dependencies]]
  62. branch = "master"
  63. name = "github.com/gorilla/websocket"
  64. [[dependencies]]
  65. branch = "master"
  66. name = "github.com/mattn/go-colorable"
  67. [[dependencies]]
  68. branch = "master"
  69. name = "github.com/mgutz/ansi"
  70. [[dependencies]]
  71. branch = "master"
  72. name = "github.com/stackimpact/stackimpact-go"
  73. [[dependencies]]
  74. branch = "master"
  75. name = "github.com/tidwall/buntdb"
  76. [[dependencies]]
  77. branch = "master"
  78. name = "golang.org/x/crypto"
  79. [[dependencies]]
  80. branch = "master"
  81. name = "golang.org/x/text"
  82. [[dependencies]]
  83. branch = "v2"
  84. name = "gopkg.in/yaml.v2"