File tree Expand file tree Collapse file tree 6 files changed +913
-12
lines changed
orderbook-implementations Expand file tree Collapse file tree 6 files changed +913
-12
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " orderbook-implementations"
3- version = " 0.1.0"
4- edition = " 2024"
3+ version.workspace = true
4+ edition.workspace = true
5+ authors.workspace = true
6+ license.workspace = true
7+ repository.workspace = true
8+ description = " Different order book data structure implementations"
59
610[dependencies ]
11+ aggregator-core = { path = " ../aggregator-core" }
12+ tokio = { workspace = true }
13+ serde = { workspace = true }
14+ serde_json = { workspace = true }
15+ anyhow = { workspace = true }
16+ thiserror = { workspace = true }
17+ tracing = { workspace = true }
18+ async-trait = { workspace = true }
19+ uuid = { workspace = true }
20+ chrono = { workspace = true }
21+ dashmap = { workspace = true }
Original file line number Diff line number Diff line change 1+ //! AVL Tree-based order book implementation (placeholder)
2+
3+ // TODO: Implement AVL tree-based order book for optimal insertion/deletion performance
You can’t perform that action at this time.
0 commit comments