1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! Parser for XLIFF 1.2 and XLIFF 2.0 files.
//!
//! ## Description
//!
//! The library allows the consumer to read and export translations stored in XLIFF format.
//!
//!
//! ## Specifications
//!
//! - XLIFF 1.2 http://docs.oasis-open.org/xliff/v1.2/os/xliff-core.html
//!
//! - XLIFF 2.0 http://docs.oasis-open.org/xliff/xliff-core/v2.0/xliff-core-v2.0.html
//! ```
#![deny(missing_docs)]
#![recursion_limit = "1024"]

pub mod store;
pub mod t;

//
//#[cfg(test)]
//mod tests {
//    #[test]
//    fn it_works() {
//        assert_eq!(2 + 2, 4);
//    }
//}