diff options
-rw-r--r-- | tvix/nix-compat/src/narinfo/public_keys.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nix-compat/src/narinfo/public_keys.rs b/tvix/nix-compat/src/narinfo/public_keys.rs index 27dd90e096db..4739f4fc9212 100644 --- a/tvix/nix-compat/src/narinfo/public_keys.rs +++ b/tvix/nix-compat/src/narinfo/public_keys.rs @@ -11,7 +11,7 @@ use super::Signature; /// This represents a ed25519 public key and "name". /// These are normally passed in the `trusted-public-keys` Nix config option, /// and consist of a name and base64-encoded ed25519 pubkey, separated by a `:`. -#[derive(Debug)] +#[derive(Clone, Debug, PartialEq, Eq)] pub struct PubKey { name: String, verifying_key: VerifyingKey, |