diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 22208c5..20205cc 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -5,11 +5,6 @@ "./..." ], "Deps": [ - { - "ImportPath": "code.google.com/p/go.crypto/ssh", - "Comment": "null-209", - "Rev": "23b39e4e860172e1983ded00a9d2f7e42b7683d0" - }, { "ImportPath": "github.com/gorilla/context", "Rev": "708054d61e5a2918b9f4e9700000ee611dcf03f5" @@ -54,6 +49,10 @@ "Comment": "0.9.0-431-ga83fbc0", "Rev": "a83fbc036f0a4e68e188486d70a13850bf91a2d0" }, + { + "ImportPath": "golang.org/x/crypto/ssh", + "Rev": "1fbbd62cfec66bd39d91e97749579579d4d3037e" + }, { "ImportPath": "gopkg.in/check.v1", "Rev": "64131543e7896d5bcc6bd5a76287eb75ea96c673" diff --git a/user/key.go b/user/key.go index 2e35b5b..d7d0b09 100644 --- a/user/key.go +++ b/user/key.go @@ -1,4 +1,4 @@ -// Copyright 2014 gandalf authors. All rights reserved. +// Copyright 2015 gandalf authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. @@ -17,10 +17,10 @@ import ( "syscall" "time" - "code.google.com/p/go.crypto/ssh" "github.com/tsuru/config" "github.com/tsuru/gandalf/db" "github.com/tsuru/gandalf/fs" + "golang.org/x/crypto/ssh" "gopkg.in/mgo.v2" "gopkg.in/mgo.v2/bson" )