1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Structs and traits for dealing with distributed transactions.
//!
//! This crate is an attempt to provide a reasonable rust language binding for
//! XA Distributed Transactions.
//!
//! So far there is no support for asynchronous operations in resource managers.

#![warn(missing_docs)]

#[macro_use]
extern crate bitflags;
extern crate byteorder;
#[macro_use]
extern crate log;

pub mod rm;
pub mod tm;