kudu_esr/lib.rs
1//!
2//! This crate provides tools to create and sign EOS Signing Requests (ESR).
3//!
4//! ## Feature flags
5//!
6//! - `float128`: add support for a native `float128` type. This currently needs a nightly Rust
7//! version as `f128` support is still experimental. If this is not active,
8//! the `Float128` will still be available but as a `[u8; 16]` wrapper.
9
10#![doc = include_str!("../TODO.md")]
11
12#![cfg_attr(feature = "float128", feature(f128))]
13
14pub mod signing_request;