ctlog 0.1.0

A simple certificate transparency log client API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

use thiserror::Error;

#[derive(Error, Debug)]
pub enum CTLogError {
    #[error("parse error: {0}")]
    ParseUrlError(#[from] url::ParseError),
    #[error("reqwest error: {0}")]
    ReqwestError(#[from] reqwest::Error),
}

pub mod client;
pub use client::CTLogV1;

pub mod ct;