Skip to content

Commit 57674ae

Browse files
feat:orderbook impl
1 parent aa4f733 commit 57674ae

File tree

6 files changed

+913
-12
lines changed

6 files changed

+913
-12
lines changed
Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
[package]
22
name = "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 }
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//! AVL Tree-based order book implementation (placeholder)
2+
3+
// TODO: Implement AVL tree-based order book for optimal insertion/deletion performance

0 commit comments

Comments
 (0)