quickfix-spec-parser 0.2.1

FIX XML spec file parser / writer
Documentation
1
2
3
4
5
6
7
8
use quickfix_spec_parser::FixSpec;

#[test]
fn test_new_fixt() {
    let spec = FixSpec::new_fixt();
    assert_eq!(spec.version, (1, 1, 0));
    assert!(spec.is_fixt);
}