Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
.vscode/
.vscode/
.zed/
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this?

Copy link
Copy Markdown
Contributor

@larrydewey larrydewey May 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Zed is an editor like VSCode. This is to make sure those settings are synced into the repository

12 changes: 12 additions & 0 deletions src/certs/snp/cert_nossl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,15 @@ impl Certificate {
fn io_error_other<S: Into<String>>(error: S) -> io::Error {
io::Error::new(ErrorKind::Other, error.into())
}

impl From<x509_cert::Certificate> for Certificate {
fn from(value: x509_cert::Certificate) -> Self {
Self(value)
}
}

impl From<Certificate> for x509_cert::Certificate {
fn from(Certificate(cert): Certificate) -> Self {
cert
}
}
Loading