keetanetwork-client 0.2.0

Async REST client for transmitting vote staples to a KeetaNet node
1
2
3
4
5
6
7
//! Lock primitives shared by the client, selected for `no_std` support.
//!
//! [`spin`] mutex/rw-lock work in both `std` and `no_std` builds (atomic
//! spin locks, no OS dependency), so the same scoring core compiles under
//! `--no-default-features`.

pub(crate) use spin::{Mutex, Once, RwLock};