This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (49 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
65 lines (49 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "dry-testing-engine"
version = "0.1.0"
edition = "2021"
authors = ["PolyEdge Team"]
description = "Dry testing engine for execution lanes and order state machine"
license = "MIT OR Apache-2.0"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Database
sqlx = { version = "0.7", features = ["runtime-tokio-native-tls", "postgres", "chrono", "uuid", "migrate"] }
rust_decimal = { version = "1.33", features = ["serde-with-str", "db-postgres"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Utilities
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Async traits
async-trait = "0.1"
# Concurrent data structures
dashmap = "5.5"
# Channel for bounded queues
tokio-stream = "0.1"
futures = "0.3"
# Random number generation (for venue simulator)
rand = "0.8"
# Statistics and distributions (for venue simulator)
statrs = "0.16"
[dev-dependencies]
# Testing
tokio-test = "0.4"
mockall = "0.12"
# Benchmarking
criterion = { version = "0.5", features = ["async_tokio"] }
[[bench]]
name = "state_machine"
harness = false
[[bench]]
name = "coordinator"
harness = false