amber-api 2.1.0

Rust client for Amber Electric's API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Rust client for Amber Electric's API.

#![no_std]
#![expect(clippy::pub_use, reason = "Root API exports for convenience")]

extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

#[cfg(feature = "std")]
mod client;
mod error;
pub mod models;

#[cfg(feature = "std")]
pub use client::{Amber, AmberBuilder};
pub use error::{AmberError, Result};