atrium-xrpc-client 0.5.15

XRPC Client library for AT Protocol (Bluesky)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

#[cfg_attr(docsrs, doc(cfg(feature = "isahc")))]
#[cfg(feature = "isahc")]
pub mod isahc;
#[cfg_attr(docsrs, doc(cfg(feature = "reqwest")))]
#[cfg(any(feature = "reqwest", target_arch = "wasm32"))]
pub mod reqwest;

#[cfg(all(test, not(target_arch = "wasm32")))]
mod tests;