zenmoney-rs 0.3.0

Rust client library for the ZenMoney API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Rust client library for the `ZenMoney` API.
//!
//! This crate provides a typed client for interacting with the
//! [ZenMoney](https://zenmoney.ru/) personal finance API.

#[cfg(any(feature = "async", feature = "blocking"))]
pub mod client;
pub mod error;
pub mod models;
#[cfg(any(feature = "async", feature = "blocking"))]
pub mod storage;
#[cfg(any(feature = "async", feature = "blocking"))]
pub mod zen_money;