orderbook-rs 0.8.0

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
mod time;

mod tests;

pub use time::current_time_millis;

#[cfg(feature = "alloc-counters")]
pub mod counting_allocator;

#[cfg(feature = "alloc-counters")]
pub use counting_allocator::{AllocSnapshot, CountingAllocator};