aranya_daemon_api/lib.rs
1//! Internal crate for `aranya-client` and `aranya-daemon`.
2//!
3//! This crate is an implementation detail for `aranya-client`
4//! and `aranya-daemon` and is exposed out of necessity. It is
5//! permanently unstable and does NOT promise backward
6//! compatibility.
7
8#![cfg_attr(docsrs, feature(doc_cfg))]
9
10pub mod crypto;
11mod service;
12
13pub use service::*;