otterbook_core 0.1.3

A high-performance, lock-free price level implementation for limit order books in Rust. This library provides the building blocks for creating efficient trading systems with support for multiple order types and concurrent access patterns.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! OrderBook implementation for managing multiple price levels and order matching.

mod book;
mod error;
mod operations;
mod snapshot;

mod modifications;
mod private;
mod tests;

pub use book::OrderBook;
pub use error::OrderBookError;
pub use snapshot::OrderBookSnapshot;