renegade-sdk 0.1.7

A Rust SDK for the Renegade protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A Rust SDK for interacting with the Renegade relayer
#![deny(missing_docs)]
#![deny(clippy::missing_docs_in_private_items)]
#![deny(unsafe_code)]
#![deny(clippy::needless_pass_by_ref_mut)]

pub(crate) mod external_match_client;
mod http;
pub mod types;
mod util;

pub use external_match_client::*;
#[cfg(feature = "examples")]
pub mod example_utils;