dfx 1.0.0-beta

A FIX protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::module_inception)]
#![doc = include_str!("../README.md")]
// #![allow(dead_code)]
// #![allow(unused)]
// #![allow(clippy::too_many_arguments)]
// TODO remove above once closer to completed

pub mod connection;
pub(crate) mod fields;
pub mod logging;
pub mod message_store;
pub mod session;

pub use dfx_base::*;