-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 862 Bytes
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
[package]
name = "price-matching-engine"
version = "0.1.0"
edition = "2024"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
borsh = "1.5.7"
tokio = { version = "1.46.1", features = ["full"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["json"] }
anyhow = "1.0"
solana-sdk = "3.0.0"
solana-client = "3.0.0"
solana-commitment-config = "3.0.0"
reqwest = "0.12.23"
base64 = "0.22.1"
thiserror = "2.0.16"
axum = "0.8.4"
tower-http = { version = "0.6.6", features = ["cors"] }
once_cell = "1.21.3"
url = "2.5.7"
eventsource-client = "0.15.0"
futures = "0.3.31"
scopeguard = "1.2.0"
sqlx = { version = "0.8", features = [
"runtime-tokio",
"postgres",
"macros",
"uuid",
"chrono",
] }
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }