Skip to content

Commit

Permalink
Add clone impl
Browse files Browse the repository at this point in the history
  • Loading branch information
obelisk committed Jan 17, 2022
1 parent 7b597d8 commit af78885
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sshcerts"
version = "0.8.0"
version = "0.8.1"
authors = ["Mitchell Grenier <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions src/ssh/cert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl From<Extensions> for HashMap<String, String> {
}

/// Type that encapsulates the normal usage of the extensions field.
#[derive(Debug)]
#[derive(Clone, Debug)]
pub enum Extensions {
/// Contains the five standard extensions: agent-forwarding, port-forwarding, pty, user-rc, X11-forwarding
Standard,
Expand All @@ -89,7 +89,7 @@ pub enum Extensions {
/// Type that encapsulates the normal usage of the critical options field.
/// I used a structure instead of an Option for consistency and possible future
/// expansion into a ForceCommand type.
#[derive(Debug)]
#[derive(Clone, Debug)]
pub enum CriticalOptions {
/// Don't use any critical options
None,
Expand Down

0 comments on commit af78885

Please sign in to comment.