github.com/keys-pub/mattermost-server@v4.10.10+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/go-sql-driver/mysql"
    30    branch = "master"
    31  
    32  # Constaint to bring us to latest master for bug fixes
    33  [[constraint]]
    34    name = "github.com/gorilla/websocket"
    35    branch = "master"
    36  
    37  # To keep us on latest since maintainer stopped releasing versions
    38  [[constraint]]
    39    name = "github.com/hashicorp/memberlist"
    40    branch = "master"
    41  
    42  # To avoid pulling old gorp version, we use master of our fork
    43  [[constraint]]
    44    name = "github.com/mattermost/gorp"
    45    branch = "master"
    46  
    47  # Fork for adding our own method to viper EnvSettings
    48  [[constraint]]
    49    name = "github.com/spf13/viper"
    50    source = "https://github.com/mattermost/viper"
    51    branch = "env-settings"
    52  
    53  # Keep back because of breaking API changes
    54  [[constraint]]
    55    name = "github.com/segmentio/analytics-go"
    56    version = "2.1.1"
    57  
    58  [prune]
    59    go-tests = true
    60    unused-packages = true
    61  
    62  [[constraint]]
    63    name = "gopkg.in/natefinch/lumberjack.v2"
    64    version = "2.1.0"