-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (50 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (50 loc) · 1.22 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
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
authors = ["itscheems"]
[workspace]
resolver = "3"
members = [
"crates/gateway",
"crates/matching",
"crates/settlement",
"crates/sdk",
]
[workspace.dependencies]
# Error handling
anyhow = "^1"
thiserror = "^2"
# Serialization
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
# Async runtime
tokio = { version = "^1", features = ["rt-multi-thread", "macros"] }
async-trait = "^0.1"
# gRPC
tonic = "^0.14"
prost = "^0.14"
prost-types = "^0.14"
tonic-build = { version = "^0.14" }
tonic-prost-build = { version = "^0.14" }
tonic-prost = { version = "^0.14" }
# Logging
tracing = "^0.1"
tracing-subscriber = { version = "^0.3", features = ["env-filter", "time"] }
tracing-appender = "0.2"
time = "^0.3"
# Utilities
uuid = { version = "^1", features = ["v4"] }
hex = "^0.4"
config = "^0.15"
envy = "^0.4"
dashmap = "^6"
chrono = "^0.4"
moka = { version = "^0.12", features = ["sync"] }
# Cryptography (shared between gateway and sdk)
ed25519-dalek = { version = "^2", features = ["rand_core"] }
k256 = { version = "^0.13", features = ["ecdsa", "sha256"] }
sha2 = "^0.11"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3