odoo-api 0.2.5

Type-safe and full-coverage implementation of the Odoo JSON-RPC API, including ORM and Web methods. Supports sessioning, multi-database, async and blocking via reqwest, and bring-your-own requests.
Documentation
1
2
3
4
5
6
7
8
pub(crate) mod closure_async;
pub(crate) mod closure_blocking;

#[cfg(feature = "async")]
pub(crate) mod reqwest_async;

#[cfg(feature = "blocking")]
pub(crate) mod reqwest_blocking;