limitbook 0.1.0

High-performance Central Limit Order Book (CLOB) implementation with nanosecond-level matching
Documentation
1
2
3
4
5
6
7
8
9
// in lib.rs
pub mod order;
pub mod order_book;
pub mod ticks;

// Re-export main types for easier use
pub use order::{Fill, Order, OrderId, OrderSide, OrderType};
pub use order_book::OrderBook;
pub use ticks::Tick;