-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (73 loc) · 2.31 KB
/
Cargo.toml
File metadata and controls
79 lines (73 loc) · 2.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
resolver = "2"
members = [
"ironsbe",
"ironsbe-core",
"ironsbe-schema",
"ironsbe-codegen",
"ironsbe-derive",
"ironsbe-channel",
"ironsbe-transport",
"ironsbe-server",
"ironsbe-client",
"ironsbe-marketdata",
"ironsbe-bench",
]
[workspace.package]
version = "0.1.2"
edition = "2024"
authors = ["Joaquin Bejar <jb@taunais.com>"]
license = "MIT"
repository = "https://github.com/joaquinbejar/IronSBE"
homepage = "https://github.com/joaquinbejar/IronSBE"
keywords = ["finance", "sbe", "trading", "low-latency", "binary-encoding"]
categories = ["finance", "encoding", "network-programming"]
[workspace.dependencies]
# Internal crates
ironsbe = { path = "ironsbe", version = "0.1.2" }
ironsbe-core = { path = "ironsbe-core", version = "0.1.2" }
ironsbe-schema = { path = "ironsbe-schema", version = "0.1.2" }
ironsbe-codegen = { path = "ironsbe-codegen", version = "0.1.2" }
ironsbe-derive = { path = "ironsbe-derive", version = "0.1.2" }
ironsbe-channel = { path = "ironsbe-channel", version = "0.1.2" }
ironsbe-transport = { path = "ironsbe-transport", version = "0.1.2" }
ironsbe-server = { path = "ironsbe-server", version = "0.1.2" }
ironsbe-client = { path = "ironsbe-client", version = "0.1.2" }
ironsbe-marketdata = { path = "ironsbe-marketdata", version = "0.1.2" }
ironsbe-bench = { path = "ironsbe-bench", version = "0.1.2" }
# External dependencies - Latest stable versions as of Jan 2025
thiserror = "2.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
bytes = { version = "1.11", features = ["serde"] }
parking_lot = "0.12"
crossbeam-channel = "0.5"
crossbeam-queue = "0.3"
tokio = { version = "1.49", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
async-trait = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
num-traits = "0.2"
num-derive = "0.4"
chrono = { version = "0.4", features = ["serde"] }
quick-xml = "0.39"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full", "parsing"] }
rtrb = "0.3"
lru = "0.16"
memmap2 = "0.9"
criterion = { version = "0.8", features = ["html_reports"] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.release.build-override]
opt-level = 3
[profile.bench]
opt-level = 3
lto = "thin"