Dep / Godep:在软件包级别定义修订

In govendor was possible to specify which revision you wanted for each package of a dependency. For example:

Repo "github.com/myorg/myrepo".

Package "github.com/myorg/myrepo/x" with revision "16b65b2a4e3d30f47875b1cb2abc8a43fc"

Package "github.com/myorg/myrepo/y" with revision "2190sdfds034e3d30f47875b1cb2a434c"

Code example:

{
    "checksumSHA1": "KP40Q38cB087cxh4TU1LWe1KOP4=",
    "path": "github.com/myorg/myrepo/x",
    "revision": "16b65b2a4e3d30f47875b1cb2abc8a43fc",
    "revisionTime": "2016-10-21T14:31:02Z"
},
{
    "checksumSHA1": "KP40Q38cB087cxh4TU1LWe1KOP4=",
    "path": "github.com/myorg/myrepo/y",
    "revision": "2190sdfds034e3d30f47875b1cb2a434c",
    "revisionTime": "2017-12-21T14:31:02Z"
},

Is this posible with Dep?

Thanks!