-
-
Notifications
You must be signed in to change notification settings - Fork 184
Closed
Labels
Description
Currently, only RSA keys are supported:
Line 119 in 528bf38
let private_key = identity.unwrap_or(home()?.join(".ssh/id_rsa")); |
However, more and more people are defaulting to ed25519
(myself included). Having to setup a rsa
key just for cargo-generate
is not ideal.
cargo-generate
should at least support ed25519
keys as well.
Edit: I realize I could manually override this via -i | --identity
, but my request is to make it automatically use id_ed25519
if it exists.
sassman, zeeshanlakhani and IndigoLily