github.com/pafomin-at-avito/mattermost-server@v5.11.1+incompatible/Gopkg.toml (about)

     1  # Gopkg.toml example
     2  #
     3  # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
     4  # for detailed Gopkg.toml documentation.
     5  #
     6  # required = ["github.com/user/thing/cmd/thing"]
     7  # ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
     8  #
     9  # [[constraint]]
    10  #   name = "github.com/user/project"
    11  #   version = "1.0.0"
    12  #
    13  # [[constraint]]
    14  #   name = "github.com/user/project2"
    15  #   branch = "dev"
    16  #   source = "github.com/myfork/project2"
    17  #
    18  # [[override]]
    19  #   name = "github.com/x/y"
    20  #   version = "2.4.0"
    21  #
    22  # [prune]
    23  #   non-go = false
    24  #   go-tests = true
    25  #   unused-packages = true
    26  
    27  # To keep us on latest since maintainer stopped releasing versions
    28  [[constraint]]
    29    name = "github.com/hashicorp/memberlist"
    30    branch = "master"
    31  
    32  # To avoid pulling old gorp version, we use master of our fork
    33  [[constraint]]
    34    name = "github.com/mattermost/gorp"
    35    branch = "master"
    36  
    37  # Fork for adding our own method to viper EnvSettings
    38  [[constraint]]
    39    name = "github.com/mattermost/viper"
    40    source = "https://github.com/mattermost/viper"
    41    branch = "mattermost"
    42  
    43  # Keep back because of breaking API changes
    44  [[constraint]]
    45    name = "github.com/segmentio/analytics-go"
    46    version = "2.1.1"
    47  
    48  # Use latest master since we rely on some security features that don't exist in latest release
    49  [[constraint]]
    50    name = "willnorris.com/go/imageproxy"
    51    branch = "master"
    52  
    53  # Lock to control when plugins use new versions
    54  [[constraint]]
    55    name = "github.com/hashicorp/go-hclog"
    56    revision = "e45cbeb79f0411b1cfedd3f226ff69d5d433c762"
    57  
    58  [[constraint]]
    59    name = "github.com/hashicorp/go-plugin"
    60    revision = "54b6ff97d8180dbbd93d2010dd4a92c86f604bb8"
    61  
    62  [prune]
    63    go-tests = true
    64    unused-packages = true